From 81b5f557f3011873c93c94c2cf400c82481b7fff Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 20:37:14 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 24d5559..2848e20 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -96,7 +96,10 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={true} - testimonials={[]} + testimonials={[ + { id: "1", name: "Alice Dupont", role: "CEO", company: "TechCorp", rating: 5 }, + { id: "2", name: "Marc Lefebvre", role: "Manager", company: "DesignStudio", rating: 5 } + ]} kpiItems={[{value: "100+", label: "Clients"}, {value: "500+", label: "Tasks"}, {value: "10+", label: "Years"}]} title="Voices of our community." description="See why industry leaders trust us with their vision." @@ -106,7 +109,11 @@ export default function LandingPage() {
-- 2.49.1 From d25b87375bb895e33ef2ff17b57bbf7bc332e865 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 20:37:14 +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 b7afc67..60aa0eb 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #0F0F0F; + --card: #1A1A1A; + --foreground: #FFFFFF; + --primary-cta: #C9A84C; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #1A1A1A; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #C9A84C; + --background-accent: #262626; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1