import type { Metadata } from "next"; import { Geist, Geist_Mono, Source_Serif_4, Nunito_Sans } from "next/font/google"; import { SessionProvider } from "@/components/providers/session-provider"; import "./globals.css"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); const sourceSerif4 = Source_Serif_4({ variable: "--font-source-serif-4", subsets: ["latin"], weight: ["400", "500", "600", "700"], }); // Using Nunito Sans as a close alternative to Fractul (similar geometric sans-serif style) const nunitoSans = Nunito_Sans({ variable: "--font-fractul", subsets: ["latin"], weight: ["400", "500", "600", "700", "800"], }); export const metadata: Metadata = { title: "Real Estate Platform", description: "Find your dream property with trusted agents", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (