diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 713dad9..1818ca8 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -4,23 +4,25 @@ import Link from "next/link"; import { Sparkles, Zap, Crown } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; import TextAbout from "@/components/sections/about/TextAbout"; import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; +import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; +import MetricCardTen from "@/components/sections/metrics/MetricCardTen"; import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function ServicesPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Services", id: "services" }, - { name: "Portfolio", id: "portfolio" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Portfolio", id: "/portfolio" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Cartel", - items: [ + title: "Cartel", items: [ { label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Portfolio", href: "/" }, @@ -28,8 +30,7 @@ export default function ServicesPage() { ], }, { - title: "Operations", - items: [ + title: "Operations", items: [ { label: "Brand Strategy", href: "/services" }, { label: "Web Design", href: "/services" }, { label: "Content Creation", href: "/services" }, @@ -37,8 +38,7 @@ export default function ServicesPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }, { label: "Twitter", href: "#" }, @@ -46,8 +46,7 @@ export default function ServicesPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Code of Conduct", href: "#" }, @@ -76,92 +75,127 @@ export default function ServicesPage() { /> -