From c21db2ff959d5db82708e8de0ddb8e4f5a8d2fe0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 05:34:01 +0000 Subject: [PATCH] Switch to version 4: remove src/app/social-media/page.tsx --- src/app/social-media/page.tsx | 197 ---------------------------------- 1 file changed, 197 deletions(-) delete mode 100644 src/app/social-media/page.tsx diff --git a/src/app/social-media/page.tsx b/src/app/social-media/page.tsx deleted file mode 100644 index b2bb954..0000000 --- a/src/app/social-media/page.tsx +++ /dev/null @@ -1,197 +0,0 @@ -"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 ContactText from '@/components/sections/contact/ContactText'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Instagram, Heart, Sparkles, Music } from 'lucide-react'; - -export const metadata = { - title: "Social Media Gallery - Paintasy Face and Body Art", description: "Follow our social media for the latest event photos, face painting designs, and behind-the-scenes content. Real event photos organized by service type." -}; - -export default function SocialMediaPage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Services", id: "/services" }, - { name: "Gallery", id: "/gallery" }, - { name: "Packages", id: "/" }, - { name: "About", id: "/" }, - { name: "Contact", id: "/contact" }, - ]; - - const footerColumns = [ - { - 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: "Company", items: [ - { label: "About Us", href: "/" }, - { label: "Gallery", href: "/gallery" }, - { label: "Packages", href: "/" }, - { label: "FAQ", href: "/" }, - { label: "Contact", href: "/contact" }, - ], - }, - { - 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: "Service Areas", items: [ - { label: "Local Events", href: "/contact" }, - { label: "Regional Coverage", href: "/contact" }, - { label: "Book Now", href: "/" }, - { label: "Get Quote", href: "/contact" }, - ], - }, - ]; - - const instagramFeed = [ - { - id: "insta-1", name: "Birthday Magic ✨", price: "Follow Our Stories", variant: "Kids Parties", imageSrc: "http://img.b2bpic.net/free-photo/happy-kids-at-birthday-party-with-face-paint_23-2149159450.jpg?_wi=1", imageAlt: "Kids enjoying face painting at birthday party" - }, - { - id: "insta-2", name: "Festival Vibes 🎨", price: "Follow Our Stories", variant: "Festival Events", imageSrc: "http://img.b2bpic.net/free-photo/festival-face-paint-instagram_23-2149159471.jpg?_wi=1", imageAlt: "Festival face art Instagram post" - }, - { - id: "insta-3", name: "Artistic Designs 🎭", price: "Follow Our Stories", variant: "Creative Art", imageSrc: "http://img.b2bpic.net/free-photo/artistic-face-paint-design-instagram_23-2149159492.jpg?_wi=1", imageAlt: "Creative face painting design" - }, - { - id: "insta-4", name: "Event Highlights 🎉", price: "Follow Our Stories", variant: "Recent Events", imageSrc: "http://img.b2bpic.net/free-photo/recent-event-face-painting_23-2149159513.jpg?_wi=1", imageAlt: "Recent event face painting highlight" - }, - { - id: "insta-5", name: "Behind the Scenes 🎨", price: "Follow Our Stories", variant: "Process Video", imageSrc: "http://img.b2bpic.net/free-photo/behind-scenes-face-painting_23-2149159534.jpg?_wi=1", imageAlt: "Behind the scenes face painting process" - }, - { - id: "insta-6", name: "Client Love ❤️", price: "Follow Our Stories", variant: "Testimonials", imageSrc: "http://img.b2bpic.net/free-photo/happy-client-testimonial-face-paint_23-2149159555.jpg?_wi=1", imageAlt: "Happy client testimonial" - }, - { - id: "insta-7", name: "Quick Designs ⚡", price: "Follow Our Stories", variant: "Fast Service", imageSrc: "http://img.b2bpic.net/free-photo/quick-festival-design_23-2149159576.jpg?_wi=1", imageAlt: "Quick festival face design" - }, - { - id: "insta-8", name: "Glitter & Sparkle ✨", price: "Follow Our Stories", variant: "Special Effects", imageSrc: "http://img.b2bpic.net/free-photo/glitter-face-paint-design_23-2149159597.jpg?_wi=1", imageAlt: "Glitter and sparkle face painting" - }, - { - id: "insta-9", name: "Team Events 🤝", price: "Follow Our Stories", variant: "Corporate", imageSrc: "http://img.b2bpic.net/free-photo/corporate-event-face-paint_23-2149159618.jpg?_wi=1", imageAlt: "Corporate team event face painting" - }, - ]; - - return ( - - - -
- -
- -
- -
- -
- -
- - -
- ); -} \ No newline at end of file