import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "\\wych.dev", description: "In the wych elm's shadow, veritas whispers brew.", keywords: [ "wych.dev", "wych", "elias", "elias almqvist", "almqvist", "engineer", "scientist", "genius", "polymath", "software engineer", "physics", "mathematics", "founder", "startup", ], openGraph: { type: "website", locale: "en_US", url: "https://wych.dev", title: "\\wych.dev", description: "In the wych elm's shadow, veritas whispers brew.", images: [ { url: "https://wych.dev/og-image.png", width: 1529, height: 884, alt: "\\wych.dev", }, ], }, }; import { cn } from "@/lib/utils"; import { ThemeProvider } from "@/components/theme-provider"; import Layout from "@/components/layout"; import fonts from "@/components/fonts"; import { Analytics } from "@vercel/analytics/react"; import { SpeedInsights } from "@vercel/speed-insights/next"; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }