From 69d0dcb862237e2b4da4887f24601690c0b2197b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:39:28 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 265 +++++++---------------------------------------- 1 file changed, 35 insertions(+), 230 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c582265..29683f3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,16 +2,17 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactForm from '@/components/form/ContactForm'; +import ContactText from '@/components/sections/contact/ContactText'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroSplit from '@/components/sections/hero/HeroSplit'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { Briefcase, Building, Scale, ShieldCheck } from "lucide-react"; +import { Briefcase, Building, Scale, ShieldCheck, Mail, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -31,26 +32,11 @@ export default function LandingPage() {
- +
+ + +
); -} +} \ No newline at end of file -- 2.49.1 From 3a0be3279e28b4721583a8345aabee872b7c7599 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 16:39:29 +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 c88d0c0..c7b84dd 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: #171717; - --foreground: #f5f5f5; - --primary-cta: #d4af37; + --background: #ffffff; + --card: #f9f9f9; + --foreground: #1a1a1a; + --primary-cta: #15479c; --primary-cta-text: #000000; - --secondary-cta: #1a1a1a; + --secondary-cta: #f9f9f9; --secondary-cta-text: #f5f5f5; - --accent: #b8860b; - --background-accent: #262626; + --accent: #e2e2e2; + --background-accent: #f9f9f9; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1