split componeent

This commit is contained in:
pradeepkumar
2026-01-12 12:34:58 +05:30
parent 36eb93c264
commit cc631fefa7
12 changed files with 492 additions and 351 deletions

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono, Source_Serif_4 } from "next/font/google";
import { Geist, Geist_Mono, Source_Serif_4, Nunito_Sans } from "next/font/google";
import { SessionProvider } from "@/components/providers/session-provider";
import "./globals.css";
@@ -19,6 +19,13 @@ const sourceSerif4 = Source_Serif_4({
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",
@@ -32,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} ${sourceSerif4.variable} antialiased`}
className={`${geistSans.variable} ${geistMono.variable} ${sourceSerif4.variable} ${nunitoSans.variable} antialiased`}
>
<SessionProvider>{children}</SessionProvider>
</body>