From 6793adc95e7e1c887db176a4f728e482f9d5eb78 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 02:18:37 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index df9a537..776ed54 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -47,8 +47,17 @@ export default function LandingPage() { { name: "Pricing", id: "pricing" }, + { + name: "Testimonials", id: "testimonials" + }, + { + name: "Social Proof", id: "social-proof" + }, { name: "Contact", id: "contact" + }, + { + name: "Footer", id: "footer" } ]} button={{ @@ -232,7 +241,9 @@ export default function LandingPage() { Date: Thu, 26 Mar 2026 02:18:37 +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 efe6053..c2b4e50 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-dm-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-libre-baskerville), serif; + font-family: var(--font-manrope), sans-serif; } -- 2.49.1 From 58b18355ef19561aa8c20211836097886154810d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 02:18:38 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 3d0e32c..b88eb59 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f9f9f9; - --foreground: #000f06e6; - --primary-cta: #0a7039; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #1f7cff; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; - --secondary-cta-text: #000f06e6; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --secondary-cta: #010101; + --secondary-cta-text: #ffffff; + --accent: #1f7cff; + --background-accent: #f96b2f; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1