From fcc2964e07a702ca2a93af6150bd900ad1933c64 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 13:47:51 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 728 ++++++++++++++++++++--------------------------- 1 file changed, 302 insertions(+), 426 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4449f90..894a4a3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,448 +2,324 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; +import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import { Star, Utensils } from "lucide-react"; export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From 4a4e0ee63f9eed9a3fb1206718ecd798ddaa910c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 13:47:52 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d60c0a4..571f6aa 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #e3deea; - --card: #ffffff; - --foreground: #1f2027; - --primary-cta: #1f2027; - --primary-cta-text: #e3deea; - --secondary-cta: #ffffff; - --secondary-cta-text: #1f2027; - --accent: #627dc6; - --background-accent: #627dc6; + --background: #020617; + --card: #0f172a; + --foreground: #e2e8f0; + --primary-cta: #c4d8f9; + --primary-cta-text: #020617; + --secondary-cta: #041633; + --secondary-cta-text: #e2e8f0; + --accent: #2d30f3; + --background-accent: #1d4ed8; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1