diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..0621f37 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,25 @@ +import type { Metadata } from 'next' +import { Playfair_Display, Lato } from 'next/font/google' +import Navigation from '@/components/layout/Navigation' +import Footer from '@/components/layout/Footer' +import './globals.css' + +const playfairDisplay = Playfair_Display({ weight: ["400","500","600","700","800","900"], subsets: ['latin'], variable: "--font-heading", display: "swap" }) +const lato = Lato({ subsets: ['latin'], weight: ["300", "400", "700"], variable: "--font-body", display: "swap" }) + +export const metadata: Metadata = { + title: 'La Roc | Authentic Spanish Restaurant', + description: 'Savor the flavors of Spain at La Roc. Expertly crafted tapas, paella, and Iberian wines in a warm, inviting atmosphere. Join us for an unforgettable dining experience.' +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +