const Hero = () => { return (
{/* Background grid + radial wash */}
{/* LEFT: copy */}
AI-Driven Development · AIDD

Build intelligent
systems. Deliver
real outcomes.

Webever is an AI engineering firm that automates workflows, accelerates decisions, and transforms operations — built end-to-end with AI-Driven Development.

{/* Inline trust strip */}
SOC2-aligned
Cloud-native
API-first
{/* RIGHT: animated AI workflow visual */}
{/* Logo cloud */}
Trusted by operators across 9 industries
); }; const HeroVisual = () => { return (
aidd-pipeline.run
live
{/* connecting flowing paths */} {/* Input nodes */} {[ { y: 90, label: 'CRM events', color: '#E63329' }, { y: 180, label: 'Documents', color: '#F5C518' }, { y: 270, label: 'API streams', color: '#1B7BD6' }, ].map((n,i) => ( {n.label} ))} {/* Center AI core */} AIDD core {/* Output nodes */} {[ { y: 100, label: 'Decisions', color: '#14A04A' }, { y: 180, label: 'Automations', color: '#1B7BD6' }, { y: 260, label: 'Insights', color: '#E63329' }, ].map((n,i) => ( {n.label} ))} {/* Stat strip bottom */} throughput 12,480 ops/min latency p95 142 ms accuracy 98.6% {/* Floating tag */}
→ trigger
invoice.received
← outcome
approved · 0.4s
); }; const LogoMarquee = () => { const clients = [ { name: 'Center for AI Technology', src: 'assets/clients/cait-nj.png', h: 56 }, { name: 'Ideal Builders', src: 'assets/clients/ideal-builders.png', h: 44 }, { name: 'Ideal Discount Club', src: 'assets/clients/ideal-discount-club.png', h: 60 }, { name: 'Lion Motion Productions', src: 'assets/clients/lion-motion.png', h: 44 }, { name: 'AC Food Truck', src: 'assets/clients/ac-food-truck.png', h: 52 }, { name: 'Job Americans', src: 'assets/clients/job-americans.webp', h: 36 }, ]; // Repeat 2x for seamless loop const repeated = [...clients, ...clients]; return (
{repeated.map((c, i) => (
{ e.currentTarget.style.opacity = '1'; e.currentTarget.style.filter = 'saturate(1)'; }} onMouseLeave={(e) => { e.currentTarget.style.opacity = '0.72'; e.currentTarget.style.filter = 'saturate(0.85)'; }} title={c.name} > {c.name}
))}
); }; window.Hero = Hero;