diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0810e9f..fbd83a0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,15 @@ import type { Metadata } from "next"; import "./globals.css"; +import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], +}); + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { title: "Aesthetic Cafe", description: "Where Every Sip Becomes a Moment"}; @@ -11,7 +21,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}