From 6edbfc7490e7086490545e6518fc06a6d70441aa Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 05:06:11 +0000 Subject: [PATCH] Update src/app/services/page.tsx --- src/app/services/page.tsx | 165 ++++++++++++++++---------------------- 1 file changed, 67 insertions(+), 98 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 84767a1..557b440 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -1,61 +1,13 @@ "use client"; -import Link from "next/link"; 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 FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Smile, Heart, Sparkles, Zap, Music, Briefcase, Target, Users, Award, Palette, Camera, Star } from 'lucide-react'; +import { Smile, Heart, Sparkles, Star, Zap, Music, Users, Briefcase, Target, Award, Palette, Camera } from 'lucide-react'; export default function ServicesPage() { - 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: "#service-1" }, - { label: "Festival Face Art", href: "#service-2" }, - { label: "Corporate Events", href: "#service-3" }, - { label: "Body Painting", href: "#service-4" }, - ], - }, - { - title: "Quick Links", - items: [ - { label: "Gallery", href: "/gallery" }, - { label: "Packages", href: "/packages" }, - { label: "About", href: "/about" }, - { 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" }, - ], - }, - { - title: "Get Started", - items: [ - { label: "View Packages", href: "/packages" }, - { label: "Book Now", href: "/packages" }, - { label: "Get Quote", href: "/contact" }, - ], - }, - ]; - return (