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}