25 lines
460 B
TypeScript
25 lines
460 B
TypeScript
import Navbar from '@/components/Navbar';
|
|
import Footer from '@/components/Footer';
|
|
import './globals.css';
|
|
|
|
export const metadata = {
|
|
title: 'La Huasca',
|
|
description: 'Hotel, restaurant, and vineyard in the Honduran highlands',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<Navbar />
|
|
{children}
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|