import { HeroSection } from '@/components/sections/HeroSection'
import { CommunitySection } from '@/components/sections/CommunitySection'
import { ServiceMatrixSection } from '@/components/sections/ServiceMatrixSection'
import { BeforeAfterSection } from '@/components/sections/BeforeAfterSection'
import { ProcessSection } from '@/components/sections/ProcessSection'
import { ROICalculatorSection } from '@/components/sections/ROICalculatorSection'
import { CTASection } from '@/components/sections/CTASection'

export default function HomePage() {
  return (
    <>
      <HeroSection />
      <CommunitySection />
      <ServiceMatrixSection />
      <BeforeAfterSection />
      <ProcessSection />
      <ROICalculatorSection />
      <CTASection />
    </>
  )
}
