Changed cover images for map switch

This commit is contained in:
Alexis
2025-01-02 12:27:54 +01:00
parent 190406bf24
commit 3f7a8ec0b6
3 changed files with 3 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -34,12 +34,12 @@ interface MenuItem {
const menuItems: MenuItem[] = [ const menuItems: MenuItem[] = [
{ {
name: 'Aldys', name: 'Aldys',
img: 'https://picsum.photos/id/13/40', img: '/images/aldys-cover.png',
url: '/' url: '/'
}, },
{ {
name: 'Bamast', name: 'Bamast',
img: 'https://picsum.photos/id/14/40', img: '/images/bamast-cover.png',
url: '/bamast' url: '/bamast'
} }
] ]
@@ -60,7 +60,7 @@ const menuItems: MenuItem[] = [
<li v-for="item in menuItems" :key="item.name"> <li v-for="item in menuItems" :key="item.name">
<a :href="item.url" :class="{ 'active': url?.pathname === item.url }" :tabindex="url?.pathname === item.url ? -1 : 0"> <a :href="item.url" :class="{ 'active': url?.pathname === item.url }" :tabindex="url?.pathname === item.url ? -1 : 0">
<figure> <figure>
<img :src="item.img" alt="" width="40" height="40" loading="lazy"> <img :src="item.img" alt="" width="40" height="40" loading="eager">
<figcaption> <figcaption>
{{ item.name }} {{ item.name }}