From 159e838f059e387bd4ea64d6f34dffc80f704545 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 10:24:55 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 215 +++++++++++++++++++++-------------------------- 1 file changed, 96 insertions(+), 119 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 62043e3..0f8a931 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,146 +3,123 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From b219345e6bb2d19c1244f8f7487758ced7f91173 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 10:24:56 +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..7f40d02 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: #0a0a0a; + --card: #1a1a1a; + --foreground: #fffaf0; + --primary-cta: #d2691e; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #2a2a2a; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #8b4513; + --background-accent: #3e2723; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1