diff --git a/src/app/how-it-works/page.tsx b/src/app/how-it-works/page.tsx new file mode 100644 index 0000000..44bc105 --- /dev/null +++ b/src/app/how-it-works/page.tsx @@ -0,0 +1,148 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import { Heart, MessageCircle, Users } from "lucide-react"; + +export default function HowItWorksPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file