diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c67e4e8..4ce4789 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,163 +1,22 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +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; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- - -
+ + + + ); -} +} \ No newline at end of file diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index fdb24c3..2910378 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -1,225 +1,30 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import FooterSimple from '@/components/sections/footer/FooterSimple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +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; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- - -
+ + + + ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 7333d46..7c31348 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,9 +9,14 @@ 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 } from "lucide-react"; +import { Award, Cake, Phone, Star, Users, 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" + } as React.CSSProperties; + return ( + + + @@ -134,32 +77,18 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} title="Trusted by Ranchi" - description="Loved by thousands of food enthusiasts across the city." - names={[ - "Ranchi Times", - "The Daily Foodie", - "Local Bites", - "Sweet Lovers Club", - "The Ranchi Examiner", - ]} + names={["Ranchi Times", "The Daily Foodie", "Local Bites"]} />
@@ -172,41 +101,8 @@ export default function LandingPage() { title="Why Choose Bakers Fresh?" description="The secret ingredient is our love for baking." metrics={[ - { - id: "m1", - value: "100%", - title: "Freshness", - description: "Baked daily.", - icon: Award, - }, - { - id: "m2", - value: "50+", - title: "Varieties", - description: "Diverse menu.", - icon: Cake, - }, - { - id: "m3", - value: "24/7", - title: "Support", - description: "Always here.", - icon: Phone, - }, - { - id: "m4", - value: "4.8", - title: "Avg Rating", - description: "Highly rated.", - icon: Star, - }, - { - id: "m5", - value: "15", - title: "Expert Chefs", - description: "Master bakers.", - icon: Users, - }, + { id: "m1", value: "100%", title: "Freshness", description: "Baked daily.", icon: Award }, + { id: "m2", value: "50+", title: "Varieties", description: "Diverse menu.", icon: Cake } ]} /> @@ -214,62 +110,13 @@ export default function LandingPage() {
); -} +} \ No newline at end of file