import { Hero } from '@/components/hero'
import { ServicesSection } from '@/components/services-section'
import { SubjectsSection } from '@/components/subjects-section'
import { StatsSection } from '@/components/stats'
import { ClientsSection } from '@/components/clients-section'
import { Testimonials } from '@/components/testimonials'
import { FeaturedCourses } from '@/components/featured-courses'
import { GoogleReviews } from '@/components/google-reviews'
import { BlogSection } from '@/components/blog-section'
import { CtaBanner } from '@/components/cta-banner'

export default function Home() {
  return (
    <main>
      <Hero />
      <ServicesSection />
      <SubjectsSection />
      <StatsSection />
      <ClientsSection />
      <Testimonials />
      <FeaturedCourses />
      <GoogleReviews />
      <BlogSection />
      <CtaBanner />
    </main>
  )
}
