split componeent
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user