From d320e44fedc625ec0896d9c1d2b623db49e929b8 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 22:59:27 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 60c10f6..e3f832e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,9 @@ import type { Metadata } from "next"; -import { Public_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 publicSans = Public_Sans({ - variable: "--font-public-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} -- 2.49.1 From af8f529260e4744403e5fe91605a96875639e2ea Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 22:59:27 +0000 Subject: [PATCH 2/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 ce3eac0..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-public-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-public-sans), sans-serif; + font-family: var(--font-inter), sans-serif; } -- 2.49.1 From 93ea5dce7fef9f0cd7fd538dbacdad9dca4f9da3 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 22:59:28 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index eeb0624..1b7a615 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -3,22 +3,22 @@ /* --vw is set by ThemeProvider */ /* --background: #ffffff;; - --card: #f8f9fa;; - --foreground: #0c1929;; - --primary-cta: #1f7cff;; - --secondary-cta: #ffffff;; - --accent: #e0f0ff;; - --background-accent: #1f7cff;; */ + --card: #f9f9f9;; + --foreground: #120a00e6;; + --primary-cta: #FF7B05;; + --secondary-cta: #f9f9f9;; + --accent: #e2e2e2;; + --background-accent: #FF7B05;; */ --background: #ffffff;; - --card: #f8f9fa;; - --foreground: #0c1929;; - --primary-cta: #1f7cff;; + --card: #f9f9f9;; + --foreground: #120a00e6;; + --primary-cta: #FF7B05;; --primary-cta-text: #ffffff;; - --secondary-cta: #ffffff;; + --secondary-cta: #f9f9f9;; --secondary-cta-text: #0c1929;; - --accent: #e0f0ff;; - --background-accent: #1f7cff;; + --accent: #e2e2e2;; + --background-accent: #FF7B05;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1