diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 1818ca8..713dad9 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -4,25 +4,23 @@ 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: "/" }, - { name: "Services", id: "/services" }, - { name: "Portfolio", id: "/portfolio" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, + { name: "Home", id: "home" }, + { 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: "/" }, @@ -30,7 +28,8 @@ 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" }, @@ -38,7 +37,8 @@ export default function ServicesPage() { ], }, { - title: "Connect", items: [ + title: "Connect", + items: [ { label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }, { label: "Twitter", href: "#" }, @@ -46,7 +46,8 @@ export default function ServicesPage() { ], }, { - title: "Legal", items: [ + title: "Legal", + items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Code of Conduct", href: "#" }, @@ -75,127 +76,92 @@ export default function ServicesPage() { /> -
- -
- -
+
-
+
-
- -
- -
- +
); -} +} \ No newline at end of file