"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import ContactText from "@/components/sections/contact/ContactText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import Link from "next/link"; export default function PackagesPage() { const navItems = [ { 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: "Packages", items: [ { label: "Birthday Packages", href: "#packages" }, { label: "Festival Service", href: "#packages" }, { label: "Corporate Events", href: "#packages" }, { label: "Custom Packages", href: "/contact" }, ], }, { title: "Services", items: [ { label: "All Services", href: "/services" }, { label: "Gallery", href: "/gallery" }, { label: "About", href: "/about" }, { label: "FAQ", href: "#faq" }, ], }, { title: "Social", 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" }, ], }, { title: "Book Now", items: [ { label: "Request Quote", href: "/contact" }, { label: "Chat with Us", href: "/contact" }, { label: "Call Now", href: "tel:+15551234567" }, { label: "FAQ", href: "#faq" }, ], }, ]; return (
); }