reafactor: converted the entire thing into a nextjs app

This commit is contained in:
2026-01-13 18:59:25 +00:00
parent 562e1a7d0d
commit 91fc911523
236 changed files with 12171 additions and 1443 deletions

17
app/page.tsx Normal file
View File

@@ -0,0 +1,17 @@
"use client";
import Hero from '@/components/Hero';
import Features from '@/components/Features';
import HowItWorks from '@/components/HowItWorks';
import CallToAction from '@/components/CallToAction';
export default function Home() {
return (
<main>
<Hero />
<Features />
<HowItWorks />
<CallToAction />
</main>
);
}