From b8326f93a3d75cff506d59e4572654dde4be9809 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 09:49:47 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4ce4789..090f46b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,21 +2,26 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import { MessageCircle } from "lucide-react"; export default function ContactPage() { const whatsappButton = { position: "fixed", bottom: "20px", right: "20px", zIndex: 999, backgroundColor: "#25D366", color: "white", padding: "15px", borderRadius: "50%", boxShadow: "0 4px 10px rgba(0,0,0,0.3)" } as React.CSSProperties; return ( - + - - + +
+ +
); } \ No newline at end of file -- 2.49.1 From 4e91b53f714d8d5bb35899163d81b4a101e8073b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 09:49:47 +0000 Subject: [PATCH 2/3] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 2910378..56cb515 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -2,29 +2,34 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; import { MessageCircle } from "lucide-react"; export default function MenuPage() { const whatsappButton = { position: "fixed", bottom: "20px", right: "20px", zIndex: 999, backgroundColor: "#25D366", color: "white", padding: "15px", borderRadius: "50%", boxShadow: "0 4px 10px rgba(0,0,0,0.3)" } as React.CSSProperties; return ( - + - - + + ); } \ No newline at end of file -- 2.49.1 From 1e18a279c6d1a8c22f483898464ed65c296620be Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 09:49:47 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 161 ++++++++++++++++++++++------------------------- 1 file changed, 76 insertions(+), 85 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7c31348..834aae8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,12 +9,12 @@ import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarou import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import { Award, Cake, Phone, Star, Users, MessageCircle } from "lucide-react"; +import { Award, Cake, MessageCircle } from "lucide-react"; export default function LandingPage() { const whatsappButton = { - position: "fixed", bottom: "20px", right: "20px", zIndex: 999, - backgroundColor: "#25D366", color: "white", padding: "15px", borderRadius: "50%", boxShadow: "0 4px 10px rgba(0,0,0,0.3)", cursor: "pointer" + position: "fixed", bottom: "20px", right: "20px", zIndex: 999, + backgroundColor: "#25D366", color: "white", padding: "15px", borderRadius: "50%", boxShadow: "0 4px 10px rgba(0,0,0,0.3)", cursor: "pointer" } as React.CSSProperties; return ( @@ -34,88 +34,79 @@ export default function LandingPage() { - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -- 2.49.1