From 84ea0179825dea0ece82ad35d2e2862031f0b1b7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 16:05:18 +0000 Subject: [PATCH] Update src/app/locations/page.tsx --- src/app/locations/page.tsx | 235 ++++++++++++++++--------------------- 1 file changed, 99 insertions(+), 136 deletions(-) diff --git a/src/app/locations/page.tsx b/src/app/locations/page.tsx index 53c5818..b6a3c0d 100644 --- a/src/app/locations/page.tsx +++ b/src/app/locations/page.tsx @@ -2,11 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import FeatureBento from "@/components/sections/feature/FeatureBento"; import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; -import BlogCardThree from "@/components/sections/blog/BlogCardThree"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import Link from "next/link"; -import { MapPin, Clock, Phone, Camera } from "lucide-react"; +import { MapPin, Clock, Phone, Zap, TrendingUp, CheckCircle, AlertCircle, BarChart3 } from "lucide-react"; export default function LocationsPage() { const navItems = [ @@ -20,8 +20,7 @@ export default function LocationsPage() { const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "Gallery", href: "/gallery" }, @@ -29,30 +28,27 @@ export default function LocationsPage() { ], }, { - title: "Order & Contact", - items: [ - { label: "Order Online", href: "/order" }, + title: "Order & Contact", items: [ + { label: "Order Online", href: "/menu" }, { label: "Call Us", href: "tel:2397850423" }, { label: "Locations & Hours", href: "/locations" }, - { label: "Contact", href: "/contact" }, + { label: "Contact", href: "/" }, ], }, { - title: "Connect With Us", - items: [ + title: "Connect With Us", items: [ { label: "Facebook", href: "https://facebook.com/caribbeanflair" }, - { label: "About Us", href: "/about" }, - { label: "Privacy Policy", href: "#privacy" }, - { label: "Terms of Service", href: "#terms" }, + { label: "About Us", href: "/" }, + { label: "Privacy Policy", href: "/" }, + { label: "Terms of Service", href: "/" }, ], }, { - title: "Located In", - items: [ - { label: "801 Leeland Heights Blvd W", href: "#map" }, - { label: "Lehigh Acres, FL 33936", href: "#map" }, + title: "Located In", items: [ + { label: "801 Leeland Heights Blvd W", href: "/locations" }, + { label: "Lehigh Acres, FL 33936", href: "/locations" }, { label: "Open Until 9PM", href: "/locations" }, - { label: "Delivery Available", href: "/order" }, + { label: "Delivery Available", href: "/" }, ], }, ]; @@ -70,56 +66,109 @@ export default function LocationsPage() { secondaryButtonStyle="glass" headingFontWeight="medium" > + {/* Navbar */} -
- + +
+ + {/* Location Details with Map and Info */} +
+ +
+ + {/* Contact Information and Directions */} +
+
-
- -
- + {/* Footer */}