From 9cb8f05bcb48946c551388b7c4a00b7989a10808 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 17:16:56 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 165 ++++++++++++++--------------------------- 1 file changed, 54 insertions(+), 111 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7fff738..021fa42 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,127 +7,70 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import SplitAbout from '@/components/sections/about/SplitAbout'; -export default function LandingPage() { +export default function AboutPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From b0964a19df5cadf0a9ac5794a66b7db79e0b50ef Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 17:16:56 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 136 +++++++++++++-------------------------- 1 file changed, 45 insertions(+), 91 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index e4c72ee..df3ec5c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -7,107 +7,61 @@ import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -export default function LandingPage() { +export default function ContactPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From 6dac61694cd49a26bfcb3ff096d624ed3fd545c7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 17:16:57 +0000 Subject: [PATCH 3/4] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 222 +++++++++++------------------------------- 1 file changed, 55 insertions(+), 167 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index e83dc6a..b507741 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -7,183 +7,71 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -export default function LandingPage() { +export default function MenuPage() { return ( - + - + -
- -
+
+ +
- +
); -- 2.49.1 From b46139b32f356e0bd9baeea5adf02d09b35850f9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 17:16:57 +0000 Subject: [PATCH 4/4] Update src/app/page.tsx --- src/app/page.tsx | 212 ++++++++++++++++------------------------------- 1 file changed, 73 insertions(+), 139 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c991b22..0e37fe9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,8 +7,8 @@ import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwen import FooterBase from '@/components/sections/footer/FooterBase'; import HeroLogo from '@/components/sections/hero/HeroLogo'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCartItem from '@/components/ecommerce/cart/ProductCartItem'; import TextAbout from '@/components/sections/about/TextAbout'; +import { ArrowRight } from 'lucide-react'; export default function LandingPage() { return ( @@ -16,151 +16,85 @@ export default function LandingPage() { defaultButtonVariant="text-stagger" defaultTextAnimation="reveal-blur" borderRadius="rounded" + contentWidth="medium" + sizing="medium" + background="circleGradient" + cardStyle="glass-elevated" + primaryButtonStyle="gradient" + secondaryButtonStyle="glass" + headingFontWeight="normal" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- - +
); -- 2.49.1