From 1f9317c2eb54efe59aa4ac7cc44f328238738e59 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:28:54 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2c2d2ea..f62568a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,11 @@ import type { Metadata } from "next"; -import { Kanit } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const kanit = Kanit({ - variable: "--font-kanit", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -34,7 +33,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From e44b0662297230384f91516c846af92a05ac470d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:28:55 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index fd9ebfc..9920330 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -11,14 +11,14 @@ --background-accent: #ffffff; */ --background: #ffffff; - --card: #f9f9f9; - --foreground: #120006e6; - --primary-cta: #e63946; + --card: #f6f7f4; + --foreground: #080908; + --primary-cta: #0e3a29; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #e7eecd; --secondary-cta-text: #120006e6; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #35c18b; + --background-accent: #ecebe4; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1