update svg

This commit is contained in:
pradeepkumar
2026-01-12 12:17:16 +05:30
parent 0c7239d7a8
commit 36eb93c264
27 changed files with 238 additions and 97 deletions

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Geist, Geist_Mono, Source_Serif_4 } from "next/font/google";
import { SessionProvider } from "@/components/providers/session-provider";
import "./globals.css";
@@ -13,6 +13,12 @@ const geistMono = Geist_Mono({
subsets: ["latin"],
});
const sourceSerif4 = Source_Serif_4({
variable: "--font-source-serif-4",
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Real Estate Platform",
description: "Find your dream property with trusted agents",
@@ -26,7 +32,7 @@ export default function RootLayout({
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
className={`${geistSans.variable} ${geistMono.variable} ${sourceSerif4.variable} antialiased`}
>
<SessionProvider>{children}</SessionProvider>
</body>