diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..321b5c5 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,262 @@ +'use client'; + +import { ThemeProvider } from "next-themes"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; +import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; +import { Sparkles, CheckCircle } from 'lucide-react'; + +export default function ServicesPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ ); +}