From e42cf534030303acf152b2900d14dab6e59ef120 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 13:38:20 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1134a4a..f1bb8f3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,12 @@ import type { Metadata } from "next"; -import { Cormorant_Garamond } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const cormorantGaramond = Cormorant_Garamond({ - variable: "--font-cormorant-garamond", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { @@ -22,7 +22,7 @@ export default function RootLayout({ {children} @@ -1397,4 +1397,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From f3a9f00f0b50a0c29679b0695bb5861c24728d6f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 13:38:21 +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 f04799e..1098f37 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -189,4 +189,4 @@ export default function HomePage() { ); -} \ No newline at end of file +} -- 2.49.1 From 4cf3cd9cbf5aa8636f4693f9ad1a12334f62ee1c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 13:38:22 +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 355651f..4ea3106 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-font-family: var(--font-cormorant-garamond), serif;), sans-serif; + font-family: var(--font-font-family: var(--font-inter-tight), serif;), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-font-family: var(--font-cormorant-garamond), serif;), sans-serif; + font-family: var(--font-font-family: var(--font-inter-tight), serif;), sans-serif; } -- 2.49.1