Update app/page.tsx
This commit is contained in:
parent
5cf454ad52
commit
6a6a2f44eb
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue