Init commit!

This commit is contained in:
Jennie Robinson Faber 2025-08-22 18:36:16 +01:00
commit 086d682592
34 changed files with 19249 additions and 0 deletions

26
app/app.vue Normal file
View file

@ -0,0 +1,26 @@
<template>
<div>
<!-- Navigation -->
<nav class="bg-white shadow-sm border-b">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<NuxtLink to="/" class="text-xl font-bold text-gray-900 font-mono">
Faber Finances
</NuxtLink>
</div>
</div>
</div>
</nav>
<!-- Main Content -->
<NuxtPage />
</div>
</template>
<script setup>
// Global SEO
useSeoMeta({
titleTemplate: "%s - Faber Finances",
description: "Personal finance and cash flow management system",
});
</script>