From 2e5b315329e06399dd0fe04dea450805fdee4a87 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 13:19:04 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 343 ++++++++++++++--------------------------------- 1 file changed, 104 insertions(+), 239 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1eceed9..51d4a82 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,16 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; -import MediaAbout from '@/components/sections/about/MediaAbout'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import { Building, CheckCircle, Users } from "lucide-react"; export default function LandingPage() { @@ -22,245 +22,110 @@ export default function LandingPage() { borderRadius="soft" contentWidth="mediumLarge" sizing="largeSmallSizeMediumTitles" - background="floatingGradient" - cardStyle="glass-depth" - primaryButtonStyle="radial-glow" + background="noise" + cardStyle="soft-shadow" + primaryButtonStyle="flat" secondaryButtonStyle="solid" - headingFontWeight="bold" + headingFontWeight="semibold" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- -
- -
- - +
); -} +} \ No newline at end of file -- 2.49.1 From 294f4494fbe62e868becc63e73c4a8423d13d574 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 13:19:04 +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 2276416..1aa3598 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f9f9f9; - --foreground: #1c1c1c; - --primary-cta: #1c1c1c; + --background: #fcf6ec; + --card: #f3ede2; + --foreground: #2e2521; + --primary-cta: #2e2521; --primary-cta-text: #ffffff; --secondary-cta: #ffffff; --secondary-cta-text: #1c1c1c; - --accent: #d4d4d4; - --background-accent: #f4f4f4; + --accent: #b2a28b; + --background-accent: #b2a28b; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1