🐛 Fixes kto-sme not highlighting

This commit is contained in:
2025-11-09 20:38:42 +01:00
parent ead0b92357
commit 647311ac5a
2 changed files with 3 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ const items = computed<NavigationMenuItem[]>(() => [
{
label: "Kto sme",
to: "/kto-sme",
active: route.path.startsWith("/about"),
active: route.path.startsWith("/kto-sme"),
class: "text-lg",
},
{

View File

@@ -27,13 +27,13 @@
<!-- taken from https://www.instagram.com/p/DKSO0BvssTQ -->
<h3 class="font-bold text-2xl">Bratislava</h3>
<UCarousel v-slot="{ item }" :items="examplesBa" :ui="{ item: 'basis-1/3' }" arrows autoplay loop>
<NuxtImg :src="item" width="256" class="rounded-lg"/>
<NuxtImg :src="item" width="256" class="rounded-lg" alt="Food Not Bombs food, cooking & distribution"/>
</UCarousel>
<!-- taken from https://www.instagram.com/p/DJrNlPvKWQR -->
<h3 class="font-bold text-2xl mt-4">Košice</h3>
<UCarousel v-slot="{ item }" :items="examplesKe" :ui="{ item: 'basis-1/3' }" arrows autoplay loop>
<NuxtImg :src="item" width="256" class="rounded-lg"/>
<NuxtImg :src="item" width="256" class="rounded-lg" alt="Food Not Bombs food, cooking & distribution"/>
</UCarousel>
</template>