diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 40b4e50..f250516 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -1,12 +1,12 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import BlogCardThree from '@/components/sections/blog/BlogCardThree'; -import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import Link from "next/link"; -import { Camera, Zap, TrendingUp } from "lucide-react"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import BlogCardThree from "@/components/sections/blog/BlogCardThree"; +import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { Award, Camera, Zap, TrendingUp, Facebook } from "lucide-react"; export default function GalleryPage() { const navItems = [ @@ -20,39 +20,35 @@ export default function GalleryPage() { const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, - { label: "Menu", href: "/#menu" }, + { label: "Menu", href: "/menu" }, { label: "Gallery", href: "/gallery" }, - { label: "Reviews", href: "/#reviews" }, + { label: "Reviews", href: "/reviews" }, ], }, { - 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: "Locations & Hours", href: "/locations" }, + { 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" }, - { label: "Open Until 9PM", href: "#locations" }, - { label: "Delivery Available", href: "/#order" }, + 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: "/" }, ], }, ]; @@ -70,19 +66,44 @@ export default function GalleryPage() { secondaryButtonStyle="glass" headingFontWeight="medium" > + {/* Navbar */}
-