INNER CODE UNIT · JavaScript
CTASection
MAIF/otoroshi · manual/next/src/pages/index.js:428
function CTASection() {
return (
<section className={styles.ctaSection}>
<div className="container">
<Heading as="h2">Ready to Get Started?</Heading>
<p>Join the community and start managing your APIs with Otoroshi today.</p>
<div className={styles.ctaButtons}>
<Link className="button button--primary button--lg" to="/docs/getting-started">
Quick Start Guide
</Link>
<Link className="button button--outline button--lg" href="https://discord.gg/dmbwZrfpcQ">
Join Discord
</Link>
</div>
</div>
</section>
);
}