🔥 Removes actions
This commit is contained in:
9
app/app.config.ts
Normal file
9
app/app.config.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export default defineAppConfig({
|
||||
ui: {
|
||||
footer: {
|
||||
slots: {
|
||||
top: "py-2!",
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
@@ -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",
|
||||
|
||||
@@ -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>
|
||||
@@ -3,5 +3,5 @@ export default defineNuxtConfig({
|
||||
compatibilityDate: "2025-07-15",
|
||||
devtools: {enabled: true},
|
||||
modules: ["@nuxt/image", "@nuxt/ui"],
|
||||
css: ["~/assets/css/main.css"]
|
||||
css: ["~/assets/css/main.css"],
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user