// Hi-Fi Hero — routing-diagram hero, editorial headline // Takes B's "Growth Front Door" diagram and fuses D's big-serif editorial hero. const RoutingDiagram = () => { // Static-but-alive: animated dashed flow, subtle pulse on central node. const navy = 'var(--navy)'; const gold = 'var(--gold)'; const muted = 'var(--muted)'; return (
{/* Left — operator pain */}
Operator · inbound
{[ "We can't get through to the right state program.", "Our next contract needs GovCon compliance help.", "Stuck on the capital raise — wrong intros.", "Need 12 hires in 6 months. No workforce map.", ].map((q, i) => ( “{q}” ))}
{/* Middle — router */}
{/* Incoming */} {[60, 150, 240, 330].map((y, i) => ( ))} {/* Outgoing */} {[60, 150, 240, 330].map((y, i) => ( ))} {/* Central router card */}
FGBVA · Router
Growth
Front Door
human-verified handoff
{['triage', 'match', 'intro', 'follow-up'].map(t => ( {t} ))}
{/* Right — outbound intros */}
Real intro · outbound
{[ ['Capital', 'VA SSBCI · growth bank desk'], ['Procurement', 'VA SBSD · SWaM · prime intro'], ['Talent', 'VCCS · apprenticeship · GO VA'], ['Compliance', 'counsel on retainer · SCC'], ].map(([p, who], i) => (
{p}
{who}
))}
{/* Footer caption */}
avg. time to named intro · 5 business days
follow-up at · 14 days
); }; const Hero = ({ ctaCopy }) => { return (
{/* Subtle grid */}
A trade association for Virginia founder-operators

You built the company.
Now scale it — without
the insider tax.

FGBVA is the Growth Front Door for Virginia companies past $1M in revenue. One form gets you a warm handoff to capital, procurement, talent, and compliance — plus a peer circle of operators at your stage, and a policy voice that carries your asks to Richmond.

{ctaCopy} See how routing works
{/* Diagram */}
); }; window.Hero = Hero;