From cd1580462c05797d5ff42a37e7bdf14afdc3c78d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:16:06 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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}