import { createRoot } from 'react-dom/client';
import HeroContent from './HeroContent.jsx';

const root = document.getElementById('hero-root');
if (root) createRoot(root).render(<HeroContent />);
