From 5476a45c9b2d8648d8b322a1fe68fade1a105508 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 09:41:20 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 114 +++++++++++++++++------------------------ 1 file changed, 47 insertions(+), 67 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 28635b1..b38885e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,82 +6,62 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -export default function LandingPage() { +export default function AboutPage() { return ( - + -
- -
+
+ +
- +
); -- 2.49.1 From 21a8f7b0cd0e8fb46eaeb9bc8f124535ee9d0e10 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 09:41:20 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 124 ++++++++++++++++----------------------- 1 file changed, 50 insertions(+), 74 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index f10d183..592a0dd 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -6,89 +6,65 @@ import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -export default function LandingPage() { +export default function ContactPage() { return ( - + -
- -
+
+ +
- +
); -- 2.49.1 From 577ebcea0d8ed4785701e0cd1860a4048cdc54b4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 09:41:20 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 243 +++++++++++++++++------------------------------ 1 file changed, 87 insertions(+), 156 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9f45f14..a3b213f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Leaf, ShieldCheck, Heart } from "lucide-react"; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; @@ -14,168 +15,98 @@ export default function LandingPage() { defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" + contentWidth="medium" + sizing="medium" + background="circleGradient" + cardStyle="glass-elevated" + primaryButtonStyle="gradient" + secondaryButtonStyle="glass" + headingFontWeight="normal" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From ab7152791b168331b913d1c5ccf77abe4fe14196 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 09:41:21 +0000 Subject: [PATCH 4/4] Update src/app/products/page.tsx --- src/app/products/page.tsx | 149 +++++++++++++++----------------------- 1 file changed, 57 insertions(+), 92 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index a27d752..642a3b8 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -6,107 +6,72 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; -export default function LandingPage() { +export default function ProductsPage() { return ( - + -
- -
+
+ +
- +
); -- 2.49.1