diff --git a/src/app/page.tsx b/src/app/page.tsx index c159c38..78d227a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,9 +11,57 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour'; import FaqBase from '@/components/sections/faq/FaqBase'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Sparkles, Palette, DollarSign, Star, Camera, HelpCircle, Heart, Smile, Award, Zap, Music, Users, Briefcase, Target, CheckCircle, Shield } from 'lucide-react'; +import Link from 'next/link'; +import { Sparkles, Palette, Heart, Smile, Zap, Music, Briefcase, Target, Users, Star, DollarSign, Camera, HelpCircle, Award } from 'lucide-react'; export default function HomePage() { + 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: "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: "/about" }, + { label: "Gallery", href: "/gallery" }, + { label: "Packages", href: "/packages" }, + { label: "FAQ", href: "#faq" }, + { 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: "/packages" }, + { label: "Get Quote", href: "/contact" }, + ], + }, + ]; + return ( -
+
-
+
-
+
-
+
-
+
-