🔥 Removes actions

This commit is contained in:
2025-10-25 17:50:17 +02:00
parent ad2c63b088
commit 6afa5763a6
4 changed files with 27 additions and 12 deletions

9
app/app.config.ts Normal file
View File

@@ -0,0 +1,9 @@
export default defineAppConfig({
ui: {
footer: {
slots: {
top: "py-2!",
}
}
}
});

View File

@@ -11,13 +11,23 @@
<UNavigationMenu :items="items"/>
<template #right>
<UTooltip text="Otvor Instagram">
<UButton
color="neutral"
variant="ghost"
to="https://www.instagram.com/foodnotbombsbratislava/"
target="_blank"
icon="i-simple-icons-instagram"
aria-label="Instagram"/>
</UTooltip>
<UTooltip text="Otvor na Gitea">
<UButton
color="neutral"
variant="ghost"
to="https://gitea.svitan.dev/Streamer272/fnb"
target="_blank"
icon="i-simple-icons-github"
icon="i-simple-icons-gitea"
aria-label="Gitea"
/>
</UTooltip>
@@ -25,7 +35,7 @@
</UHeader>
<UContainer>
<div class="w-[40vw] my-[5vh] h-full flex flex-col">
<div class="w-[40vw] my-[2vh] h-full flex flex-col">
<slot/>
</div>
</UContainer>
@@ -35,6 +45,10 @@
<p class="text-muted text-sm">Copyleft 🄯 {{ new Date().getFullYear() }}</p>
</template>
<template #top>
<USeparator class="bg-red-500"/>
</template>
<template #right>
<p class="text-muted text-sm">
Vytvoril
@@ -56,12 +70,6 @@ const items = computed<NavigationMenuItem[]>(() => [
active: route.path.startsWith("/about"),
class: "text-lg",
},
{
label: "Akcie",
to: "/akcie",
active: route.path.startsWith("/akcie"),
class: "text-lg",
},
{
label: "Pridaj sa",
to: "/pridaj-sa",

View File

@@ -41,5 +41,3 @@
Ut hendrerit semper vel class aptent taciti sociosqu. Ad litora torquent per conubia nostra inceptos
himenaeos.</p>
</template>
<script setup lang="ts">
</script>