From a37cec8dec76d9dcf4a5ab155a7e760e3cecc0c4 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 6 Jan 2026 11:17:23 +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 bba5829..45f0491 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-lato), sans-serif; + font-family: var(--font-playfair-display, --font-roboto), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -508,5 +508,5 @@ h3, h4, h5, h6 { - font-family: var(--font-lato), sans-serif; + font-family: var(--font-playfair-display, --font-roboto), sans-serif; } \ No newline at end of file From 774500031650700b6b5638547c36a5ad59e370e5 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 6 Jan 2026 11:17:24 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cfb3df7..51ba7ee 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,18 @@ import type { Metadata } from "next"; -import { Lato } from "next/font/google"; +import { Playfair_Display, Roboto } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const lato = Lato({ - variable: "--font-lato", +const playfairDisplay = Playfair_Display({ + variable: "--font-playfair-display", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +}); + +const roboto = Roboto({ + variable: "--font-roboto", + subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], }); export const metadata: Metadata = { @@ -49,7 +54,7 @@ export default function RootLayout({ {children} @@ -1275,4 +1280,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} From 52f212e506e489d2ca5ef6a661cf05e3d3cf148d Mon Sep 17 00:00:00 2001 From: development Date: Tue, 6 Jan 2026 11:17:25 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 983a7a9..46995cf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -386,4 +386,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}