Add database integration, auth API, admin/user portals, and deploy-db.sh

This commit is contained in:
2026-06-27 16:40:58 -05:00
parent 26559d4cf8
commit cc59177a74
25 changed files with 1423 additions and 118 deletions
+7 -2
View File
@@ -1,6 +1,8 @@
import Navbar from '@/components/Navbar';
export const metadata = {
title: 'La Huasca',
description: 'TypeScript + Next.js scaffold with Pretext text measurement',
description: 'TypeScript + Next.js version of La Huasca',
};
export default function RootLayout({
@@ -10,7 +12,10 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>{children}</body>
<body style={{ margin: 0, fontFamily: 'system-ui, sans-serif' }}>
<Navbar />
{children}
</body>
</html>
);
}