Update app/page.tsx
This commit is contained in:
parent
3d4fb399f7
commit
f91d16ecf7
|
|
@ -0,0 +1,27 @@
|
||||||
|
import { Hero } from "@/components/hero";
|
||||||
|
import { WhySection } from "@/components/why-section";
|
||||||
|
import { CourseContent } from "@/components/course-content";
|
||||||
|
import { TargetAudience } from "@/components/target-audience";
|
||||||
|
import { Results } from "@/components/results";
|
||||||
|
import { Testimonials } from "@/components/testimonials";
|
||||||
|
import { Pricing } from "@/components/pricing";
|
||||||
|
import { About } from "@/components/about";
|
||||||
|
import { FAQ } from "@/components/faq";
|
||||||
|
import { FinalCTA } from "@/components/final-cta";
|
||||||
|
|
||||||
|
export default function Home() {
|
||||||
|
return (
|
||||||
|
<main className="min-h-screen">
|
||||||
|
<Hero />
|
||||||
|
<WhySection />
|
||||||
|
<CourseContent />
|
||||||
|
<TargetAudience />
|
||||||
|
<Results />
|
||||||
|
<Testimonials />
|
||||||
|
<Pricing />
|
||||||
|
<About />
|
||||||
|
<FAQ />
|
||||||
|
<FinalCTA />
|
||||||
|
</main>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue