Deploy
This commit is contained in:
@@ -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 (
|
||||||
|
<html lang="en" className={`${playfairDisplay.variable} ${lato.variable}`}>
|
||||||
|
<body className={lato.className}>
|
||||||
|
<Navigation />
|
||||||
|
{children}
|
||||||
|
<Footer />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user