- Fixed brutalist styling across all components - Removed notes field from transaction list display - Added whitespace-nowrap to prevent description wrapping - Updated modals with consistent border styling - Improved form layouts and button styling
26 lines
657 B
Vue
26 lines
657 B
Vue
<template>
|
|
<div>
|
|
<!-- Navigation -->
|
|
<nav class="bg-black border-b-4 border-black">
|
|
<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-white 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>
|