diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 2479a0c..71171d2 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -4,36 +4,41 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import FaqBase from '@/components/sections/faq/FaqBase'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Sparkles, Palette, Heart, Smile, Zap, Music, Star, DollarSign } from 'lucide-react'; +import { Sparkles, Palette, Heart, Smile, Zap, Music, Briefcase, Target, Users, Star, DollarSign, HelpCircle } from 'lucide-react'; + +export const metadata = { + title: "Services - Paintasy Face and Body Art | Professional Face Painting", description: "Explore our professional face painting and body art services for parties, festivals, corporate events, and special occasions. Detailed service offerings and transparent pricing.", keywords: "face painting services, body art, face painter for hire, professional face painting, party entertainment, event services" +}; export default function ServicesPage() { const navItems = [ - { name: "Home", id: "home" }, + { name: "Home", id: "/" }, { name: "Services", id: "services" }, - { name: "Gallery", id: "gallery" }, + { name: "Gallery", id: "/gallery" }, { name: "Packages", id: "packages" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "#about-home" }, + { 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" }, + { 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: "Home", href: "/" }, { label: "Gallery", href: "/gallery" }, - { label: "Packages", href: "/packages" }, + { label: "Packages", href: "#packages" }, { label: "FAQ", href: "#faq" }, { label: "Contact", href: "/contact" }, ], @@ -51,7 +56,7 @@ export default function ServicesPage() { title: "Service Areas", items: [ { label: "Local Events", href: "/contact" }, { label: "Regional Coverage", href: "/contact" }, - { label: "Book Now", href: "/packages" }, + { label: "Book Now", href: "#pricing" }, { label: "Get Quote", href: "/contact" }, ], }, @@ -79,22 +84,23 @@ export default function ServicesPage() { /> -