Deploy
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import type { Metadata } from 'next';
|
||||
import { Work_Sans, Source_Sans_3 } from 'next/font/google';
|
||||
import Navigation from '@/components/layout/Navigation';
|
||||
import Footer from '@/components/layout/Footer';
|
||||
import './globals.css';
|
||||
|
||||
const workSans = Work_Sans({ subsets: ['latin'], variable: "--font-heading", display: "swap" });
|
||||
const sourceSans3 = Source_Sans_3({ weight: ["300","400","500","600","700"], subsets: ['latin'], variable: "--font-body", display: "swap" });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Bona Vista - Authentic Italian Restaurant in Rome',
|
||||
description:
|
||||
'Bona Vista serves traditional Italian recipes with organic, locally-sourced ingredients. Handcrafted pasta, wood-fired pizza, and warm hospitality in the heart of Rome since 2008.',
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<html lang="en" className={`${workSans.variable} ${sourceSans3.variable}`}>
|
||||
<body className={sourceSans3.className}>
|
||||
<Navigation />
|
||||
{children}
|
||||
<Footer />
|
||||
<script src="/vula-editor.js"></script></body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user