import Hero from "./animated-shader-hero"; // Demo Component showing how to use the Hero const HeroDemo: React.FC = () => { const handlePrimaryClick = () => { console.log('Get Started clicked!'); // Add your logic here }; const handleSecondaryClick = () => { console.log('Explore Features clicked!'); // Add your logic here }; return (
{/* Additional content below hero */}

How to Use the Hero Component

{``}
            
); }; export default HeroDemo;