Skip to content

Commit ceb0faa

Browse files
move image local
1 parent 5042275 commit ceb0faa

File tree

4 files changed

+18
-13
lines changed

4 files changed

+18
-13
lines changed

assets/images/prof-pic.jpg

32.2 KB
Loading

components/SideBar.vue

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<template>
22
<aside
3-
class="flex flex-col justify-between flex-none w-3/4 h-screen px-4 py-10 border-r-2 fixed md:relative md:w-1/4 border-secondary"
3+
class="flex flex-col justify-between flex-none w-3/4 h-screen px-4 py-5 border-r-2 fixed md:relative md:w-1/4 border-secondary"
44
>
5-
<ul class="flex flex-col items-center font-semibold tracking-wider">
6-
<li>
5+
<ul class="flex flex-col items-start font-semibold tracking-wider">
6+
<li class="self-center">
77
<img
8-
class="w-20 h-20 border-2 border-double rounded-full border-primary"
9-
src="https://pbs.twimg.com/profile_images/1339914545616306176/RL3BryOf_400x400.jpg"
8+
class="w-24 h-24 border-4 border-double rounded-full border-primary"
9+
src="~/assets/images/prof-pic.jpg"
1010
alt="Jeremy Ward"
1111
/>
1212
</li>
1313
<li>
1414
<nuxt-link to="/about" @click="console.log('hey there')">
15-
/ReadMe
15+
ReadMe
1616
</nuxt-link>
1717
</li>
1818
<li>
19-
<nuxt-link to="/"> /Blog </nuxt-link>
19+
<nuxt-link to="/"> Blog </nuxt-link>
2020
</li>
2121
<!-- <li> -->
2222
<!-- <nuxt-link to="/portfolio"> /Works </nuxt-link> -->
@@ -50,17 +50,17 @@ export default {
5050
socials: [
5151
{
5252
id: 'github',
53-
text: '/GitHub',
53+
text: 'GitHub',
5454
href: 'https://github.com/basicbrogrammer',
5555
},
5656
{
5757
id: 'twitter',
58-
text: '/Twitter',
58+
text: 'Twitter',
5959
href: 'https://twitter.com/basicbrogrammer',
6060
},
6161
{
6262
id: 'instagram',
63-
text: '/Instagram',
63+
text: 'Instagram',
6464
href: 'https://instagram.com/basicbrogrammer',
6565
},
6666
],
@@ -74,6 +74,11 @@ li {
7474
margin: 0.5rem 0;
7575
}
7676
aside {
77-
background-color: #feecfb;
77+
background-color: #f4f0ec;
78+
}
79+
80+
li > a::before {
81+
content: '/';
82+
color: #ff124f;
7883
}
7984
</style>

layouts/default.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ html {
7171
-moz-osx-font-smoothing: grayscale;
7272
-webkit-font-smoothing: antialiased;
7373
box-sizing: border-box;
74-
background-color: #feecfb;
74+
background-color: #f4f0ec;
7575
}
7676
7777
*,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"private": true,
55
"scripts": {
6-
"dev": "nuxt",
6+
"dev": "NUXT_HOST=0.0.0.0 nuxt",
77
"build": "nuxt build",
88
"start": "nuxt start",
99
"generate": "nuxt generate",

0 commit comments

Comments
 (0)