From 61143da3811ab6ec95ca9589ce2e5c567b2bb9b3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 20:17:40 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 278 ++++++++++++++++++++++++++++++++++------------- 1 file changed, 203 insertions(+), 75 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 223080e..8e0404f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,6 +10,7 @@ import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import ContactText from "@/components/sections/contact/ContactText"; import FooterCard from "@/components/sections/footer/FooterCard"; +import FaqBase from "@/components/sections/faq/FaqBase"; import { Sparkles, Award, @@ -30,6 +31,9 @@ import { Linkedin, Instagram, Github, + Leaf, + BarChart3, + Headphones, } from "lucide-react"; export default function LandingPage() { @@ -48,40 +52,42 @@ export default function LandingPage() { >
@@ -89,182 +95,304 @@ export default function LandingPage() {
+
+ +
+
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1 From 18b28f5bad535d7be4d0c80f27cde824cdf3334b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 20:17:41 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 2758245..2b36112 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f7f6f7; - --card: #ffffff; - --foreground: #0c1325; - --primary-cta: #0b07ff; + --background: #fafffb; + --card: #f7fffa; + --foreground: #001a0a; + --primary-cta: #0a7039; --primary-cta-text: #f7f6f7; --secondary-cta: #ffffff; --secondary-cta-text: #0c1325; - --accent: #93b7ff; - --background-accent: #a8bae8; + --accent: #a8d9be; + --background-accent: #6bbf8e; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1