From 87d0cb78d0752a5b2f32c7277c1a7a01175774b0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:19:50 +0000 Subject: [PATCH 1/7] Update src/app/about/page.tsx --- src/app/about/page.tsx | 36 ++++++++++++++---------------------- 1 file changed, 14 insertions(+), 22 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3e0e898..b5a42f6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -51,16 +51,16 @@ const footerColumns = [ export default function AboutPage() { return ( ); -} \ No newline at end of file +} -- 2.49.1 From 98db53168842cc6746a35ecdc4d1634ab3a39cda Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:19:52 +0000 Subject: [PATCH 6/7] 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 bbb522f..e82d027 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-source-sans-3), sans-serif; + font-family: var(--font-montserrat), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-source-sans-3), sans-serif; + font-family: var(--font-playfair-display), serif; } -- 2.49.1 From 79f1a9e544158d290243373658dd9d063b58b53b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:19:53 +0000 Subject: [PATCH 7/7] Update src/app/styles/variables.css --- src/app/styles/variables.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 6e0a3ca..543130a 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #ffffff;; - --card: #f9f9f9;; - --foreground: #120a00e6;; - --primary-cta: #E34400;; - --secondary-cta: #f9f9f9;; - --accent: #e2e2e2;; - --background-accent: #E34400;; */ + /* --background: #fffefe;; + --card: #f6f7f4;; + --foreground: #080908;; + --primary-cta: #0e3a29;; + --secondary-cta: #e7eecd;; + --accent: #35c18b;; + --background-accent: #ecebe4;; */ - --background: #ffffff;; - --card: #f9f9f9;; - --foreground: #120a00e6;; - --primary-cta: #E34400;; + --background: #fffefe;; + --card: #f6f7f4;; + --foreground: #080908;; + --primary-cta: #0e3a29;; --primary-cta-text: #ffffff;; - --secondary-cta: #f9f9f9;; + --secondary-cta: #e7eecd;; --secondary-cta-text: #120a00e6;; - --accent: #e2e2e2;; - --background-accent: #E34400;; + --accent: #35c18b;; + --background-accent: #ecebe4;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1