diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index b3790b8..8dc4b52 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -1,15 +1,50 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from "next/link"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; -import TextAbout from "@/components/sections/about/TextAbout"; -import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; +import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve"; +import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Zap, Shield } from "lucide-react"; +import { Zap, Shield, Target, Star, MapPin } from "lucide-react"; export default function ServicesPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Contact", id: "/contact" }, + ]; + + const footerColumns = [ + { + title: "Navigate", items: [ + { label: "Home", href: "/" }, + { label: "About", href: "/about" }, + { label: "Services", href: "/services" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Services", items: [ + { label: "Personal Training", href: "/services" }, + { label: "Strength & Conditioning", href: "/services" }, + { label: "Custom Programs", href: "/services" }, + { label: "Book a Session", href: "/contact" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Our Philosophy", href: "/about" }, + { label: "Contact", href: "/contact" }, + { label: "Privacy Policy", href: "#" }, + ], + }, + ]; + return ( - {/* Navbar */} - {/* Services Overview Section */} +
+ +
+
- {/* Detailed Service Breakdown */} -
- +
- {/* Philosophy Section */} -
- + +
+ +
+ +
+ +
+
- {/* Footer */}
); -} \ No newline at end of file +}