diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..de2f457 --- /dev/null +++ b/app/page.tsx @@ -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 ( +
+ + + + + + + + + + +
+ ); +}