From cc23b301a19129a91ee58d0581cf7df9e065b9a5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:39:13 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index aa39f42..6fd16d9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,21 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Lavender_Blue } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], +const lavenderBlue = Lavender_Blue({ + variable: "--font-lavender-blue", subsets: ["latin"], + weight: ["400"], }); -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], +const lato = Lato({ + variable: "--font-lato", subsets: ["latin"], + weight: ["100", "300", "400", "700", "900"], }); export const metadata: Metadata = { - title: "Chef Portfolio", description: "Professional culinary services and fine dining experiences"}; + title: "Chef Portfolio", description: "Professional culinary services and fine dining experiences" +}; export default function RootLayout({ children, @@ -20,7 +24,7 @@ export default function RootLayout({ }) { return ( - + {children}