Files
budget_analyser/resources/js/templates/home.layout.vue
clement be5225c85d 🌱 🏗️ ⬆️ add expense table 🎨 🔧
2025-05-15 17:45:22 +02:00

29 lines
663 B
Vue

<script setup>
import { Link } from "@inertiajs/vue3";
</script>
<style>
@import "home.css";
</style>
<template>
<header>
<div class="container text-center position-sticky">
<div class="row">
<div class="col">
<Link href="/">Home</Link>
</div>
<div class="col">
<Link href="/transactions">Manage Expenses & Incomes</Link>
</div>
<div class="col">
<Link href="">Lorem</Link>
</div>
</div>
</div>
</header>
<main>
<slot />
</main>
</template>