diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index f250516..40b4e50 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 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"; +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"; export default function GalleryPage() { const navItems = [ @@ -20,35 +20,39 @@ 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: "/menu" }, + title: "Order & Contact", + items: [ + { label: "Order Online", href: "/#order" }, { label: "Call Us", href: "tel:2397850423" }, - { label: "Locations & Hours", href: "/locations" }, - { label: "Contact", href: "/" }, + { label: "Locations & Hours", href: "/#locations" }, + { label: "Contact", href: "#contact" }, ], }, { - title: "Connect With Us", items: [ + title: "Connect With Us", + items: [ { label: "Facebook", href: "https://facebook.com/caribbeanflair" }, - { label: "About Us", href: "/" }, - { label: "Privacy Policy", href: "/" }, - { label: "Terms of Service", href: "/" }, + { label: "About Us", href: "/about" }, + { label: "Privacy Policy", href: "#privacy" }, + { label: "Terms of Service", href: "#terms" }, ], }, { - 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: "/" }, + 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" }, ], }, ]; @@ -66,44 +70,19 @@ export default function GalleryPage() { secondaryButtonStyle="glass" headingFontWeight="medium" > - {/* Navbar */} - {/* Hero Section */} -
- -
- - {/* Full Gallery Section with Tags and Horizontal Scrolling */} -