import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import { Nav } from "@/components/Nav"; import { Footer } from "@/components/Footer"; import { site } from "@/lib/contact"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { metadataBase: new URL(site.url), title: { default: "impact — STEM için, gençler tarafından", template: "%s · impact", }, description: site.description, openGraph: { type: "website", url: site.url, siteName: "impact", title: "impact — STEM için, gençler tarafından", description: site.description, locale: "tr_TR", }, twitter: { card: "summary_large_image", title: "impact", description: site.description, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (