From a0f77d46bd2116ed75b4f0f009f43a6376b27df0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 09:58:36 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5397aa9..7112060 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,7 @@ import TextAbout from "@/components/sections/about/TextAbout"; import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven"; import ProductCardThree from "@/components/sections/product/ProductCardThree"; import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; +import ContactForm from "@/components/form/ContactForm"; import FooterBase from "@/components/sections/footer/FooterBase"; import { Zap, AlertTriangle, Wrench, Package, TrendingUp, TrendingDown, Award, Lightbulb, Sparkles, Mail, Shield } from "lucide-react"; @@ -219,19 +219,16 @@ export default function LandingPage() {
- console.log("Contact form submission:", email)} + centered={true} />
-- 2.49.1 From d0259c366fcf0e888512e21fe6845b139b1c5821 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 09:58:36 +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 9a65d19..d61134c 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0f1e; - --card: #151a2e; - --foreground: #e0e8ff; - --primary-cta: #00cfff; + --background: #ffffff; + --card: #f9f9f9; + --foreground: #000000; + --primary-cta: #000000; --primary-cta-text: #0a0f1e; - --secondary-cta: #00ff9c; + --secondary-cta: #ffffff; --secondary-cta-text: #0a0f1e; - --accent: #6a5cff; - --background-accent: #1a2547; + --accent: #e2e2e2; + --background-accent: #f5f5f5; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1