From 01e656320099f7defb1cbb04f2f4fc9bd7ff0a70 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 05:24:43 +0000 Subject: [PATCH] Switch to version 1: modified src/app/packages/page.tsx --- src/app/packages/page.tsx | 287 +++++++++++++++++++++++--------------- 1 file changed, 176 insertions(+), 111 deletions(-) diff --git a/src/app/packages/page.tsx b/src/app/packages/page.tsx index b703df2..500208a 100644 --- a/src/app/packages/page.tsx +++ b/src/app/packages/page.tsx @@ -1,13 +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 ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import ContactText from '@/components/sections/contact/ContactText'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Sparkles, DollarSign, HelpCircle } 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 = [ @@ -21,46 +20,43 @@ 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" }, ], }, ]; - const handleBookingSubmit = (data: Record) => { - console.log("Booking inquiry submitted:", data); - }; - return ( -
+
-
+
-
- -
-
-
+
-