import type { Metadata } from "next"; import { DM_Sans, Playfair_Display } from "next/font/google"; // Import your specific fonts import "./globals.css"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], display: "swap", }); const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"], display: "swap", }); export const metadata: Metadata = { title: "Create Next App", description: "Generated by create next app", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }