From a804ecbc37bd470c7a7de38e5ffe3313eb3bb1fa Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 04:15:55 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9e5c9b5..2c9198c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,10 +1,18 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Playfair_Display, Lato } from "next/font/google"; import "./globals.css"; import "./styles/variables.css"; import "./styles/base.css"; -const inter = Inter({ subsets: ["latin"] }); +const playfairDisplay = Playfair_Display({ + variable: "--font-playfair-display", subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], +}); + +const lato = Lato({ + variable: "--font-lato", subsets: ["latin"], + weight: ["100", "300", "400", "700", "900"], +}); export const metadata: Metadata = { title: "Casa Della Mozzarella - Best Mozzarella in NYC", description: "Zagat-rated Italian deli on Arthur Avenue in the Bronx. Premium mozzarella, imported meats, and artisanal Italian specialties since 1987."}; @@ -16,7 +24,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}