From 06d1c59b58dd663a197fd82aba3c38ab19d58229 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 18:31:58 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e0acfda..e2ca044 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -61,7 +61,8 @@ export default function LandingPage() { icon={Heart} imageSrc="http://img.b2bpic.net/free-photo/team-doctors-standing-row_107420-84773.jpg" mediaAnimation="blur-reveal" - useInvertedBackground={false} + useInvertedBackground={true} + className="bg-zinc-950 text-white" /> @@ -77,6 +78,7 @@ export default function LandingPage() { title="Our Collective Impact" description="Building a robust network of volunteers to meet critical medical demands." useInvertedBackground={true} + className="bg-zinc-950 text-white" /> @@ -101,6 +103,7 @@ export default function LandingPage() { description="Three simple steps to make your contribution count." textboxLayout="inline-image" useInvertedBackground={true} + className="bg-zinc-950 text-white" /> @@ -115,7 +118,8 @@ export default function LandingPage() { { id: "t1", name: "Sarah M.", handle: "@sarahdonate", testimonial: "The app made it incredibly easy to schedule my donation. I feel proud to be part of this community.", rating: 5 }, { id: "t2", name: "James T.", handle: "@jdonations", testimonial: "Immediate notification saved me hours. Highly recommend to anyone wanting to contribute.", rating: 5 }, ]} - useInvertedBackground={false} + useInvertedBackground={true} + className="bg-zinc-950 text-white" /> @@ -130,6 +134,7 @@ export default function LandingPage() { sideDescription="Common queries addressed for our donors." faqsAnimation="slide-up" useInvertedBackground={true} + className="bg-zinc-950 text-white" /> @@ -140,7 +145,8 @@ export default function LandingPage() { description="Join the largest volunteer network today." buttons={[{ text: "Register Now", href: "#" }]} background={{ variant: "sparkles-gradient" }} - useInvertedBackground={false} + useInvertedBackground={true} + className="bg-zinc-950 text-white" /> -- 2.49.1 From 5c2289b2e4bb77d4dcb0a212f699ea18eba00a83 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 18:31:59 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index cbce47d..5c8aa17 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #1a1a1a; - --foreground: #fff5f5e6; - --primary-cta: #ff7a7a; + --background: #09090b; + --card: #18181b; + --foreground: #f4f4f5; + --primary-cta: #be123c; --primary-cta-text: #0a0a0a; - --secondary-cta: #1a1a1a; + --secondary-cta: #450a0a; --secondary-cta-text: #fff5f5e6; - --accent: #737373; - --background-accent: #737373; + --accent: #e11d48; + --background-accent: #1f0309; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1