import type { Metadata } from "next"; import { DM_Sans, Inter } from "next/font/google"; import "./globals.css"; import { cn } from "@/lib/utils"; import { TopBlur } from "@/components/top-blur"; const inter = Inter({ subsets: ["latin"], variable: "--body-font" }); const dm = DM_Sans({ subsets: ["latin"], variable: "--display-font" }); export const metadata: Metadata = { title: "./raj", description: "My experiments", twitter: { card: "summary_large_image", site: "@xrehpicx", creator: "@xrehpicx", images: ["https://raj.how/opengraph-image.png"], }, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }