From 110794c35bdb5c7fd69e4331118e50e7df6bce31 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 05:32:24 +0000 Subject: [PATCH] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 67 +++++++++++++++++++++------------------- 1 file changed, 35 insertions(+), 32 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 8ea76ec..db2c5e3 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -2,20 +2,19 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Camera } from 'lucide-react'; +import { Camera, Heart } from 'lucide-react'; export default function GalleryPage() { const navItems = [ { name: "Home", id: "home" }, { name: "Services", id: "services" }, - { name: "Gallery", id: "/gallery" }, + { name: "Gallery", id: "gallery" }, { name: "Packages", id: "packages" }, { name: "About", id: "about" }, - { name: "Book Event", id: "/booking" }, - { name: "Contact", id: "/contact" }, + { name: "Contact", id: "contact" }, ]; const footerColumns = [ @@ -33,7 +32,7 @@ export default function GalleryPage() { { label: "About Us", href: "/about" }, { label: "Gallery", href: "/gallery" }, { label: "Packages", href: "/packages" }, - { label: "FAQ", href: "#faq" }, + { label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/contact" }, ], }, @@ -50,7 +49,7 @@ export default function GalleryPage() { title: "Service Areas", items: [ { label: "Local Events", href: "/contact" }, { label: "Regional Coverage", href: "/contact" }, - { label: "Book Now", href: "/booking" }, + { label: "Book Now", href: "/packages" }, { label: "Get Quote", href: "/contact" }, ], }, @@ -78,69 +77,73 @@ export default function GalleryPage() { /> - -