fix: update Dockerfile and remove .next from git

This commit is contained in:
2026-01-14 18:49:57 +00:00
parent 91fc911523
commit ed2c303d6f
252 changed files with 1537 additions and 10866 deletions

17
app/(marketing)/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>
);
}