diff --git a/src/app/page.tsx b/src/app/page.tsx index 57706fc..9435bc4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,268 +7,238 @@ import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwen import FooterBase from '@/components/sections/footer/FooterBase'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { Camera, Coffee, DollarSign } from "lucide-react"; + +const commonNavItems = [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/about-us" }, + { name: "Menu", id: "/menu" }, + { name: "Why Choose Us", id: "/#why-choose-us" }, + { name: "Gallery", id: "/#gallery" }, + { name: "Reviews", id: "/#reviews" }, + { name: "Contact", id: "/#contact" }, +]; + +const commonFooterColumns = [ + { + title: "Quick Links", items: [ + { label: "Home", href: "/" }, + { label: "Menu", href: "/menu" }, + { label: "Gallery", href: "/#gallery" }, + { label: "Reviews", href: "/#reviews" }, + ], + }, + { + title: "Contact Us", items: [ + { label: "Location", href: "/#contact" }, + { label: "Call Us: 70303 70370", href: "tel:+917030370370" }, + { label: "WhatsApp Us", href: "https://wa.me/917030370370" }, + ], + }, + { + title: "Follow Us", items: [ + { label: "Instagram", href: "https://instagram.com/kafeculture" }, + { label: "Facebook", href: "https://facebook.com/kafeculture" }, + { label: "Google Reviews", href: "https://g.page/kafe-culture-jalgaon/review" }, + ], + }, +]; export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+ {/* The About Us section has been moved to its own page: /about-us */} -
- -
+
+ +
- + {/* The Menu section has been moved to its own page: /menu */} - + -
- -
+
+ +
-
- -
+
+ +
- +
);