Adds recepty route

This commit is contained in:
2025-11-11 11:18:18 +01:00
parent 3f57f94ece
commit 4c67b18ea3
2 changed files with 9 additions and 0 deletions

View File

@@ -80,6 +80,12 @@ const items = computed<NavigationMenuItem[]>(() => [
active: route.path.startsWith("/kto-sme"),
class: "text-lg",
},
{
label: "Recepty",
to: "/recepty",
active: route.path.startsWith("/recepty"),
class: "text-lg",
},
{
label: "Pridaj sa",
to: "/pridaj-sa",

3
app/pages/recepty.vue Normal file
View File

@@ -0,0 +1,3 @@
<template>
<p>Lorem ipsum</p>
</template>