From 230a8a288fc5c2ead738009375cc413eee72d544 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 10:58:22 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 00fd1d3..b7562c9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,9 @@ import type { Metadata } from "next"; -import { Nunito_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); @@ -37,7 +26,7 @@ export default function RootLayout({ {children} @@ -1412,4 +1401,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From f576c9d18ac83370788d052dce22f36c3ebdc401 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 10:58:22 +0000 Subject: [PATCH 2/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 32f4b6f..1a90b09 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -216,4 +216,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From bebdc85a2e8498f5f135b103e98d0e7d55b86ade Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 10:58:23 +0000 Subject: [PATCH 3/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 53147f7..34aea07 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-nunito-sans), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-nunito-sans), sans-serif; + font-family: var(--font-inter), sans-serif; } -- 2.49.1