diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index e1565ec..20dc8ba 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -2,10 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Phone } from "lucide-react"; +import { ShieldCheck, Phone } from "lucide-react"; export default function ServicesPage() { const navItems = [ @@ -18,8 +19,7 @@ export default function ServicesPage() { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Services", href: "/services" }, @@ -27,8 +27,7 @@ export default function ServicesPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: 04 234 4002", href: "tel:+97142344002" }, { label: "WhatsApp", href: "https://wa.me/97142344002" }, { label: "Email Us", href: "/contact" }, @@ -36,8 +35,7 @@ export default function ServicesPage() { ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Typing Services", href: "/services" }, { label: "Document Assistance", href: "/services" }, { label: "Visa Support", href: "/services" }, @@ -64,12 +62,31 @@ export default function ServicesPage() { - {/* Services Detail Section */} -
+ {/* Hero Section */} +
+ +
+ + {/* Services Details Section */} +
- {/* CTA Section */} -
+ {/* Contact CTA Section */} +
); -} \ No newline at end of file +}