diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index e41da54..193ea5c 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -5,18 +5,16 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Camera, Sparkles } from 'lucide-react'; - -export const metadata = { - title: "Gallery - Face Painting & Body Art Portfolio | Paintasy", description: "View our complete gallery of professional face painting and body art work. Real photos from parties, festivals, corporate events, and special occasions. Browse creative designs by category.", keywords: "face painting gallery, body art portfolio, face painting photos, face painter work, professional face art, event entertainment"}; +import { Camera } from 'lucide-react'; export default function GalleryPage() { const navItems = [ - { name: "Home", id: "/" }, - { name: "Services", id: "/services" }, + { name: "Home", id: "home" }, + { name: "Services", id: "services" }, { name: "Gallery", id: "/gallery" }, - { name: "Packages", id: "/" }, - { name: "About", id: "/" }, + { name: "Packages", id: "packages" }, + { name: "About", id: "about" }, + { name: "Book Event", id: "/booking" }, { name: "Contact", id: "/contact" }, ]; @@ -32,10 +30,10 @@ export default function GalleryPage() { }, { title: "Company", items: [ - { label: "About Us", href: "/" }, + { label: "About Us", href: "/about" }, { label: "Gallery", href: "/gallery" }, - { label: "Packages", href: "/" }, - { label: "FAQ", href: "/" }, + { label: "Packages", href: "/packages" }, + { label: "FAQ", href: "#faq" }, { label: "Contact", href: "/contact" }, ], }, @@ -52,7 +50,7 @@ export default function GalleryPage() { title: "Service Areas", items: [ { label: "Local Events", href: "/contact" }, { label: "Regional Coverage", href: "/contact" }, - { label: "Book Now", href: "/" }, + { label: "Book Now", href: "/booking" }, { label: "Get Quote", href: "/contact" }, ], }, @@ -80,122 +78,56 @@ export default function GalleryPage() { /> -