From 209a89ba66ffcf42db5f1e38b7a524706cacadab Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 20:29:03 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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}