bare repo

This commit is contained in:
padreug 2025-03-09 12:28:49 +01:00
parent d73f9bc01e
commit 3d356225cd
31 changed files with 134 additions and 3005 deletions

View file

@ -1,11 +1,7 @@
<script setup lang="ts">
import { computed } from 'vue'
import { useRoute } from 'vue-router'
import Navbar from '@/components/layout/Navbar.vue'
import Footer from '@/components/layout/Footer.vue'
const route = useRoute()
const showFooter = computed(() => route.path !== '/support')
</script>
<template>
@ -23,11 +19,7 @@ const showFooter = computed(() => route.path !== '/support')
<router-view />
</main>
<Footer v-if="showFooter" />
<Footer />
</div>
</div>
</template>
<style>
/* Remove default styles */
</style>