diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx
index 3242e06..f13474b 100644
--- a/src/app/gallery/page.tsx
+++ b/src/app/gallery/page.tsx
@@ -2,83 +2,59 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
-import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
-import ProductCardOne from '@/components/sections/product/ProductCardOne';
+import ProductCardFour from '@/components/sections/product/ProductCardFour';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
-import { Sparkles, Instagram, Facebook, Heart, Star, Camera, Phone, Mail } from 'lucide-react';
-
-export const metadata = {
- title: "Gallery - Paintasy Face and Body Art | Event Photos", description: "Browse our complete gallery of professional face painting and body art work from real events, festivals, corporate events, and parties."};
+import { Camera, Sparkles } from 'lucide-react';
export default function GalleryPage() {
const navItems = [
- { name: "Home", id: "/" },
- { name: "Services", id: "/services" },
- { name: "Gallery", id: "gallery" },
- { name: "Packages", id: "/" },
- { name: "About", id: "/" },
+ { name: "Home", id: "home" },
+ { name: "Services", id: "services" },
+ { name: "Gallery", id: "/gallery" },
+ { name: "Packages", id: "/packages" },
+ { name: "About", id: "about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Services", items: [
- { label: "Kids Party Face Painting", href: "/" },
- { label: "Festival Face Art", href: "/" },
- { label: "Corporate Events", href: "/" },
- { label: "Body Painting", href: "/" },
- { label: "Custom Designs", href: "/" },
+ { 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: "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" },
],
},
{
- title: "Follow Us", items: [
+ title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "TikTok", href: "https://tiktok.com" },
- { label: "LinkedIn", href: "https://linkedin.com" },
+ { label: "Email", href: "mailto:paintasy@events.com" },
+ { label: "Phone", href: "tel:+15551234567" },
],
},
{
- title: "Get in Touch", items: [
- { label: "Email: paintasy@events.com", href: "mailto:paintasy@events.com" },
- { label: "Phone: +1 (555) 123-4567", href: "tel:+15551234567" },
- { label: "Book Now", href: "/contact" },
+ title: "Service Areas", items: [
+ { label: "Local Events", href: "/contact" },
+ { label: "Regional Coverage", href: "/contact" },
+ { label: "Book Now", href: "/packages" },
{ label: "Get Quote", href: "/contact" },
],
},
];
- const galleryItems = [
- {
- id: "gallery-kids-1", name: "Butterfly Dreams", price: "Kids Party", variant: "Colorful & Playful", imageSrc: "http://img.b2bpic.net/free-photo/dreamy-eyes-woman-smiling-festival_23-2148338055.jpg?_wi=1", imageAlt: "Colorful butterfly face painting design on child"},
- {
- id: "gallery-kids-2", name: "Superhero Mask", price: "Kids Party", variant: "Popular Design", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-putting-makeup-man_23-2149357796.jpg?_wi=1", imageAlt: "Superhero mask face painting artwork"},
- {
- id: "gallery-festival-1", name: "Festival Glitter Art", price: "Festival Event", variant: "Artistic Design", imageSrc: "http://img.b2bpic.net/free-photo/man-covered-different-colors-holi_23-2148337991.jpg?_wi=1", imageAlt: "Vibrant multicolored festival face painting"},
- {
- id: "gallery-festival-2", name: "Rainbow Artist", price: "Festival Event", variant: "Crowd Favorite", imageSrc: "http://img.b2bpic.net/free-photo/male-dj-party-charge-music-entertainment_23-2149658399.jpg?_wi=1", imageAlt: "Rainbow themed face painting at outdoor festival"},
- {
- id: "gallery-body-1", name: "Professional Body Art", price: "Special Event", variant: "Premium Service", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159242.jpg?_wi=1", imageAlt: "Professional body painting artwork on model"},
- {
- id: "gallery-custom-1", name: "Themed Corporate Art", price: "Corporate Event", variant: "Custom Design", imageSrc: "http://img.b2bpic.net/free-photo/fun-portrait-with-decorations-face_23-2150749319.jpg?_wi=1", imageAlt: "Custom corporate themed face painting design"},
- {
- id: "gallery-kids-3", name: "Princess Crown", price: "Kids Party", variant: "Elegant Design", imageSrc: "http://img.b2bpic.net/free-psd/holi-festival-celebration-instagram-posts_23-2151227255.jpg?_wi=1", imageAlt: "Princess crown face painting with glitter details"},
- {
- id: "gallery-artist-1", name: "Artist at Work", price: "Behind the Scenes", variant: "Professional Skill", imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-brush-close-up_23-2148966902.jpg?_wi=1", imageAlt: "Professional face painter creating detailed artwork"},
- {
- id: "gallery-family-1", name: "Family Fun", price: "Group Event", variant: "Multiple Designs", imageSrc: "http://img.b2bpic.net/free-photo/family-portrait-surprised-father-has-yellow-face-from-paints-cheerful-two-daughters-shows-palms-dirty-with-watercolours-paint-picture-pastime-isolated-lilac-wall-this-is-art_273609-26128.jpg?_wi=1", imageAlt: "Family with coordinated face painting designs"},
- ];
-
return (