import type { Metadata } from "next"; import { Geist, Geist_Mono, Bebas_Neue, Oswald } from "next/font/google"; import "./globals.css"; import LayoutContent from "@/components/LayoutContent"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); const bebasNeue = Bebas_Neue({ variable: "--font-bebas-neue", weight: "400", subsets: ["latin"], }); const oswald = Oswald({ variable: "--font-oswald", subsets: ["latin", "latin-ext"], }); export const metadata: Metadata = { title: "A.N.T ARCHITECTURE", description: "Ayça Nur Turhan - Mimarlık ve Tasarım", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (