add footer with bitcoin svg

This commit is contained in:
padreug 2025-02-02 18:13:03 +01:00
parent 145f59fb95
commit 8b8ae239a5
3 changed files with 223 additions and 2 deletions

View file

@ -1,13 +1,15 @@
<script setup lang="ts">
import Navbar from './components/layout/Navbar.vue'
import Footer from './components/layout/Footer.vue'
</script>
<template>
<div class="min-h-screen bg-background">
<div class="min-h-screen flex flex-col bg-background">
<Navbar />
<main>
<main class="flex-1">
<router-view></router-view>
</main>
<Footer />
</div>
</template>