🔥 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"/> <UNavigationMenu :items="items"/>
<template #right> <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"> <UTooltip text="Otvor na Gitea">
<UButton <UButton
color="neutral" color="neutral"
variant="ghost" variant="ghost"
to="https://gitea.svitan.dev/Streamer272/fnb" to="https://gitea.svitan.dev/Streamer272/fnb"
target="_blank" target="_blank"
icon="i-simple-icons-github" icon="i-simple-icons-gitea"
aria-label="Gitea" aria-label="Gitea"
/> />
</UTooltip> </UTooltip>
@@ -25,7 +35,7 @@
</UHeader> </UHeader>
<UContainer> <UContainer>
<div class="w-[40vw] my-[5vh] h-full flex flex-col"> <div class="w-[40vw] my-[2vh] h-full flex flex-col">
<slot/> <slot/>
</div> </div>
</UContainer> </UContainer>
@@ -35,6 +45,10 @@
<p class="text-muted text-sm">Copyleft 🄯 {{ new Date().getFullYear() }}</p> <p class="text-muted text-sm">Copyleft 🄯 {{ new Date().getFullYear() }}</p>
</template> </template>
<template #top>
<USeparator class="bg-red-500"/>
</template>
<template #right> <template #right>
<p class="text-muted text-sm"> <p class="text-muted text-sm">
Vytvoril Vytvoril
@@ -56,12 +70,6 @@ const items = computed<NavigationMenuItem[]>(() => [
active: route.path.startsWith("/about"), active: route.path.startsWith("/about"),
class: "text-lg", class: "text-lg",
}, },
{
label: "Akcie",
to: "/akcie",
active: route.path.startsWith("/akcie"),
class: "text-lg",
},
{ {
label: "Pridaj sa", label: "Pridaj sa",
to: "/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 Ut hendrerit semper vel class aptent taciti sociosqu. Ad litora torquent per conubia nostra inceptos
himenaeos.</p> himenaeos.</p>
</template> </template>
<script setup lang="ts">
</script>

View File

@@ -1,7 +1,7 @@
// https://nuxt.com/docs/api/configuration/nuxt-config // https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({ export default defineNuxtConfig({
compatibilityDate: "2025-07-15", compatibilityDate: "2025-07-15",
devtools: { enabled: true }, devtools: {enabled: true},
modules: ["@nuxt/image", "@nuxt/ui"], modules: ["@nuxt/image", "@nuxt/ui"],
css: ["~/assets/css/main.css"] css: ["~/assets/css/main.css"],
}); });