From e3e2ca6883bc5f022ae4ad2eceb6b39c669e4d32 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 6 Jan 2026 13:08:24 +0000 Subject: [PATCH 1/3] Update src/app/globals.css --- src/app/globals.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 80608b1..ac545a3 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -495,7 +495,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-playfair-display and --font-roboto), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -508,5 +508,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-playfair-display and --font-roboto), sans-serif; } \ No newline at end of file From 03da54716e5329d84495d6a8bf54876eb1ffbf79 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 6 Jan 2026 13:08:25 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4623b4b..bd3b0d8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,19 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; +import { Playfair_Display } from "next/font/google"; +import { Roboto } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", +const playfairDisplay = Playfair_Display({ + variable: "--font-playfair-display", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + +const roboto = Roboto({ + variable: "--font-roboto", + subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], }); export const metadata: Metadata = { @@ -49,7 +55,7 @@ export default function RootLayout({ {children} @@ -1275,4 +1281,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} From b2ab106c06d93aadc61967dabb26e0ae9e460558 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 6 Jan 2026 13:08:26 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ad62add..0ca437e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -409,4 +409,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}