Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-18 18:30:39 +00:00
parent 41cf97ba41
commit 1fda28f17a
1 changed files with 13 additions and 0 deletions

13
app/page.tsx Normal file
View File

@ -0,0 +1,13 @@
import { Hero } from "@/components/hero";
import { Features } from "@/components/features";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<div className="flex flex-col min-h-screen">
<Hero />
<Features />
<Footer />
</div>
);
}