import React, { useState, useEffect } from 'react'; import Button from './ui/Button'; import RealNetworkGraph from './RealNetworkGraph'; interface HeroProps { onStart?: () => void; } const Hero: React.FC = ({ onStart }) => { const [currentSlide, setCurrentSlide] = useState(0); useEffect(() => { const interval = setInterval(() => { setCurrentSlide((prev) => (prev === 0 ? 1 : 0)); }, 6000); return () => clearInterval(interval); }, []); return (
{/* Background Ambience */}
{/* Left Content - Animated Transitions */}
{/* Slide 1 */}

Branding Simulation API for Global Teams

Programmatically test your brand narratives. Integrate accurate audience simulation into your creative workflow. Free for developers.

{/* Slide 2 */}

Test your Brand. Before you launch.

Validate brand voice and campaign ideas with AI-generated focus groups. The new standard for agentic brand testing and narrative validation.

{/* Right Visuals - Real Network Graph */}
{/* Overlay Elements for depth */}
); }; export default Hero;