diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..635bbaa --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,184 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Heart, Stethoscope } from 'lucide-react'; + +export default function ServicesPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file