Update src/app/layout.tsx

This commit is contained in:
2026-03-05 02:16:06 +00:00
parent 595376ad5e
commit cd1580462c

View File

@@ -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 (
<html lang="en">
<body>{children}
<body className={`${dmSans.variable} ${inter.variable}`}>{children}
<script
dangerouslySetInnerHTML={{
__html: `