Changed cover images for map switch
This commit is contained in:
BIN
public/images/aldys-cover.png
Normal file
BIN
public/images/aldys-cover.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.3 KiB |
BIN
public/images/bamast-cover.png
Normal file
BIN
public/images/bamast-cover.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.7 KiB |
@@ -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 }}
|
||||||
|
|||||||
Reference in New Issue
Block a user