diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..694e17f --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,141 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; +import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Sparkles, Zap, Heart, Gift } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}