diff --git a/src/app/how-it-works/page.tsx b/src/app/how-it-works/page.tsx new file mode 100644 index 0000000..e3c4c80 --- /dev/null +++ b/src/app/how-it-works/page.tsx @@ -0,0 +1,107 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { CheckCircle, AlertTriangle } from "lucide-react"; + +export default function HowItWorksPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 06483e2..75e69e2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,9 +29,10 @@ export default function LandingPage() {