Admin portal, public pages, footer, site config

This commit is contained in:
2026-06-27 18:10:49 -05:00
parent 4bb3596412
commit 75da132327
9 changed files with 1011 additions and 227 deletions
+3 -1
View File
@@ -1,9 +1,10 @@
import Navbar from '@/components/Navbar';
import Footer from '@/components/Footer';
import './globals.css';
export const metadata = {
title: 'La Huasca',
description: 'TypeScript + Next.js version of La Huasca',
description: 'Hotel, restaurant, and vineyard in the Honduran highlands',
};
export default function RootLayout({
@@ -16,6 +17,7 @@ export default function RootLayout({
<body>
<Navbar />
{children}
<Footer />
</body>
</html>
);