From da16198b444e48cf0a1d769b84c744e34841717c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 10:13:49 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 221 +++++++++++++++++------------------------------ 1 file changed, 79 insertions(+), 142 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8a412f5..4dda2db 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,7 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import { Sparkles } from "lucide-react"; @@ -19,155 +19,92 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="medium" - background="blurBottom" - cardStyle="gradient-mesh" - primaryButtonStyle="diagonal-gradient" - secondaryButtonStyle="glass" - headingFontWeight="extrabold" + background="none" + cardStyle="outline" + primaryButtonStyle="flat" + secondaryButtonStyle="solid" + headingFontWeight="medium" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From daae19ac266206962a8f404179e77299fd96f358 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 10:13:50 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index fd718b9..52fbc21 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -12,13 +12,13 @@ --background: #ffffff; --card: #f9f9f9; - --foreground: #000612e6; - --primary-cta: #106EFB; + --foreground: #1a1a1a; + --primary-cta: #000000; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #f1f1f1; --secondary-cta-text: #000612e6; - --accent: #e2e2e2; - --background-accent: #106EFB; + --accent: #e5e5e5; + --background-accent: #f9f9f9; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1