From f9b90e7894992add2764d3665ced7731f11b2d2d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:18:38 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7646a35..2c2d2ea 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,12 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Kanit } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const kanit = Kanit({ + variable: "--font-kanit", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { @@ -39,9 +34,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 0ed34ee202e36c11c4e85d5ae46319d55c5d9f76 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:18:40 +0000 Subject: [PATCH 2/2] 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 34aea07..b67e8f2 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-inter), sans-serif; + font-family: var(--font-kanit), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter), sans-serif; + font-family: var(--font-kanit), sans-serif; } -- 2.49.1