import { HeroSection } from './_components/hero-section';
import { MissionSection } from './_components/mission-section';
import { WhyInvestSection } from './_components/why-invest-section';
import { CtaSection } from './_components/cta-section';
import { WhatsAppButton } from '@/components/whatsapp-button';

export default function HomePage() {
  return (
    <>
      <HeroSection />
      <MissionSection />
      <WhyInvestSection />
      <CtaSection />
      <WhatsAppButton />
    </>
  );
}
