This commit is contained in:
2025-11-07 10:02:33 -08:00
parent 1ad8c988de
commit 30c5613937
4 changed files with 70 additions and 33 deletions

View File

@@ -9,10 +9,10 @@
<!-- Alpine.js -->
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
</head>
<body class="min-h-screen bg-slate-50 text-slate-900">
<body class="h-screen flex flex-col m-0 bg-slate-50 text-slate-900">
<header class="border-b bg-white">
<div class="max-w-5xl mx-auto p-4 flex items-center justify-between">
<a href="/" class="font-semibold">Filevine Demo</a>
<a href="/" class="font-semibold">Rothbard Law Group - Cases</a>
<nav class="space-x-4">
{% if session.uid %}
<a href="/dashboard" class="text-sm text-slate-600 hover:text-slate-900">Dashboard</a>
@@ -23,7 +23,7 @@
</nav>
</div>
</header>
<main class="max-w-full mx-auto p-6 px-4 lg:px-6">
<main class="flex-1 overflow-auto p-6 px-4 lg:px-6">
{% block content %}{% endblock %}
</main>
</body>