diff --git a/src/app/how-it-works/page.tsx b/src/app/how-it-works/page.tsx new file mode 100644 index 0000000..8b2a88a --- /dev/null +++ b/src/app/how-it-works/page.tsx @@ -0,0 +1,67 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import TimelinePhoneView from '@/components/cardStack/layouts/timelines/TimelinePhoneView'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Zap, Package, ShoppingBag } from "lucide-react"; + +export default function HowItWorksPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}