22 lines
657 B
TypeScript
22 lines
657 B
TypeScript
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>
|
|
);
|
|
}
|