diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..0dcee73 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,148 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Monitor, Code, Search, Sparkles, DollarSign, Wrench, CheckCircle } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + +
+ +
+
+ +
+
+ +
+ +
+
+ ); +}