// Sections 8–9: Get Started CTA + Footer function GetStarted() { const paths = [ { tag: 'path · 1', title: 'Join the waitlist', sub: 'early access · limited seats · private beta', cta: 'request access →', href: 'mailto:contact@fongos.net?subject=Fongos%20waitlist%20%E2%80%94%20early%20access&body=Hi%20Fongos%20team%2C%0A%0AI%27d%20like%20to%20join%20the%20waitlist.%0A%0AUse%20case%3A%20%0ATeam%20size%3A%20%0ATimeline%3A%20%0A%0AThanks.', detail: [ 'first in line when seats open', 'quarterly progress briefings', 'pricing announced in beta', 'no commitment until onboarding', ], accent: FONGOS.cyan, }, { tag: 'path · 2', title: 'Book a private demo', sub: 'live session · your use case · 30 minutes', cta: 'schedule a call →', href: 'mailto:contact@fongos.net?subject=Fongos%20%E2%80%94%20private%20demo%20request&body=Hi%20Fongos%20team%2C%0A%0AI%27d%20like%20to%20book%20a%2030-min%20private%20demo.%0A%0AWorkflow%20I%27d%20bring%3A%20%0AAvailability%3A%20%0A%0AThanks.', detail: [ 'watch fongos run live', 'bring a real workflow', 'Q&A with the team', 'decide if the trade fits', ], accent: FONGOS.purpleSoft, featured: true, }, { tag: 'path · 3', title: 'Talk to our team', sub: 'fleet deployments · custom integrations · SLA', cta: 'contact sales →', href: 'mailto:contact@fongos.net?subject=Fongos%20%E2%80%94%20fleet%20%2F%20enterprise%20inquiry&body=Hi%20Fongos%20team%2C%0A%0AInterested%20in%20a%20fleet%20deployment.%0A%0ACompany%3A%20%0ASeats%3A%20%0ANetwork%20%2F%20compliance%20notes%3A%20%0A%0AThanks.', detail: [ 'pre-configured workstations', 'on your network, your rules', 'managed updates · enterprise support', 'volume pricing', ], accent: FONGOS.ink, }, ]; return (
Three ways in.
Pick yours.

Fongos is a commercial product, in private beta. We're onboarding teams one at a time. Pick the way in that fits.

{paths.map((p) => ( {p.featured && (
recommended
)}
{p.tag}
{p.title}
{p.sub}
    {p.detail.map((d) => (
  • {d}
  • ))}
{p.cta}
))}
or write to us directly contact@fongos.net

it remembers what you told him three weeks ago.
he finds his own bugs. we were there when it happened.

); } function Footer() { return ( ); } Object.assign(window, { GetStarted, Footer });