diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..3fe756b --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,119 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import { Sparkles } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +}