We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3dcdd2 commit 1ba0741Copy full SHA for 1ba0741
components/SideBar.vue
@@ -4,11 +4,13 @@
4
>
5
<ul class="flex flex-col items-start font-semibold tracking-wider">
6
<li class="self-center">
7
- <img
8
- class="w-24 h-24 border-4 border-double rounded-full border-primary"
9
- src="~/assets/images/prof-pic.jpg"
10
- alt="Jeremy Ward"
11
- />
+ <nuxt-link :to="{ name: 'index' }">
+ <img
+ class="w-24 h-24 border-4 border-double rounded-full border-primary"
+ src="~/assets/images/prof-pic.jpg"
+ alt="Jeremy Ward"
12
+ />
13
+ </nuxt-link>
14
</li>
15
<li>
16
<nuxt-link to="/about" @click="console.log('hey there')">
@@ -88,4 +90,7 @@ li > a::before {
88
90
content: '/';
89
91
color: #ff124f;
92
}
93
+li:first-child > a::before {
94
+ content: '';
95
+}
96
</style>
0 commit comments