diff --git a/src/app/packages/page.tsx b/src/app/packages/page.tsx index 9a01779..500208a 100644 --- a/src/app/packages/page.tsx +++ b/src/app/packages/page.tsx @@ -1,14 +1,12 @@ "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 FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import ContactText from '@/components/sections/contact/ContactText'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Sparkles, DollarSign, Check, Zap, Users, Music } from 'lucide-react'; +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 = [ @@ -22,38 +20,39 @@ export default function PackagesPage() { 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: "Packages", + items: [ + { label: "Birthday Packages", href: "#packages" }, + { label: "Festival Service", href: "#packages" }, + { label: "Corporate Events", href: "#packages" }, + { label: "Custom Packages", href: "/contact" }, ], }, { - title: "Company", items: [ - { label: "About Us", href: "/about" }, + title: "Services", + items: [ + { label: "All Services", href: "/services" }, { label: "Gallery", href: "/gallery" }, - { label: "Packages", href: "/packages" }, + { label: "About", href: "/about" }, { label: "FAQ", href: "#faq" }, - { label: "Contact", href: "/contact" }, ], }, { - title: "Connect", items: [ + 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" }, - { label: "Phone", href: "tel:+15551234567" }, ], }, { - title: "Service Areas", items: [ - { label: "Local Events", href: "/contact" }, - { label: "Regional Coverage", href: "/contact" }, - { label: "Book Now", href: "/packages" }, - { label: "Get Quote", href: "/contact" }, + 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" }, ], }, ]; @@ -73,194 +72,205 @@ export default function PackagesPage() { >
-