From 44aa601970bdf4c6aed743b77dffe154bd234f73 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 05:29:50 +0000 Subject: [PATCH] Switch to version 3: modified src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 197 ++++++++++++++------------------------- 1 file changed, 71 insertions(+), 126 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 5f88b58..8ea76ec 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -1,57 +1,57 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; -import Link from "next/link"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Camera } 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: "Contact", id: "contact" }, + { name: "Book Event", id: "/booking" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Gallery", - items: [ - { label: "Kids Designs", href: "#gallery" }, - { label: "Festival Art", href: "#gallery" }, - { label: "Body Painting", href: "#gallery" }, - { label: "Custom Designs", href: "#gallery" }, + title: "Services", items: [ + { label: "Kids Party Face Painting", href: "/services" }, + { label: "Festival Face Art", href: "/services" }, + { label: "Corporate Events", href: "/services" }, + { label: "Body Painting", href: "/services" }, + { label: "Custom Designs", href: "/services" }, ], }, { - title: "Services", - items: [ - { label: "All Services", href: "/services" }, + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Gallery", href: "/gallery" }, { label: "Packages", href: "/packages" }, - { label: "Pricing", href: "/packages" }, - { label: "About", href: "/about" }, + { label: "FAQ", href: "#faq" }, + { label: "Contact", href: "/contact" }, ], }, { - title: "Social Media", - items: [ + title: "Connect", items: [ { label: "Instagram", href: "https://instagram.com" }, { label: "Facebook", href: "https://facebook.com" }, { label: "TikTok", href: "https://tiktok.com" }, { label: "Email", href: "mailto:paintasy@events.com" }, + { label: "Phone", href: "tel:+15551234567" }, ], }, { - title: "Book Now", - items: [ - { label: "View Packages", href: "/packages" }, - { label: "Request Quote", href: "/contact" }, - { label: "Contact Us", href: "/contact" }, - { label: "FAQ", href: "#faq" }, + title: "Service Areas", items: [ + { label: "Local Events", href: "/contact" }, + { label: "Regional Coverage", href: "/contact" }, + { label: "Book Now", href: "/booking" }, + { label: "Get Quote", href: "/contact" }, ], }, ]; @@ -71,134 +71,79 @@ export default function GalleryPage() { > - - -