diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1c48795..ff2ea1d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; import "./styles/variables.css"; import "./globals.css"; @@ -8,8 +9,14 @@ import "./globals.css"; export const metadata: Metadata = { title: "Elegant Restaurant", description: "Experience fine dining at its finest"}; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", + subsets: ["latin"], + weight: ["400", "700"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -20,7 +27,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}