diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6817972..e943f70 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,15 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); export const metadata: Metadata = { - title: "Create Next App", description: "Generated by create next app"}; + title: "L'Antico Forziere", description: "An authentic Italian experience with fine dining and luxury accommodations in the heart of the countryside." +}; export default function RootLayout({ children, @@ -14,7 +18,7 @@ export default function RootLayout({ }) { return ( -
{children} + {children}