diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..5aa5674 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,168 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FeatureCardTwentyEight from "@/components/sections/feature/FeatureCardTwentyEight"; +import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Sparkles, Dumbbell, Massage, Leaf, Clock, MapPin, Users, BookOpen } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + + + +
+
+ ); +} \ No newline at end of file