Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-18 18:23:49 +00:00
parent 5cf454ad52
commit 6a6a2f44eb
1 changed files with 21 additions and 0 deletions

21
app/page.tsx Normal file
View File

@ -0,0 +1,21 @@
import { Hero } from "@/components/hero";
import { ProblemSection } from "@/components/problem-section";
import { SolutionSection } from "@/components/solution-section";
import { DiscoveryFlow } from "@/components/discovery-flow";
import { CourseDemo } from "@/components/course-demo";
import { BusinessModel } from "@/components/business-model";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<div className="flex flex-col min-h-screen">
<Hero />
<ProblemSection />
<SolutionSection />
<DiscoveryFlow />
<CourseDemo />
<BusinessModel />
<Footer />
</div>
);
}