ComponentsMarketing

Call to Action

Centered call-to-action block. Drop this near the bottom of a page to push visitors to the next step.

Preview

Ready to ship?

Start building in five minutes. No signup, no install beyond pip.

Code

from nitro_ui import Div, H2, Paragraph, Href, Section


def CallToAction():
    return Section(
        Div(
            Div(
                H2("Ready to ship?", cls="cta-title"),
                Paragraph(
                    "Start building in five minutes. No signup, no install beyond pip.",
                    cls="cta-sub",
                ),
                Div(
                    Href("Get started", href="/quickstart", cls="btn btn-primary"),
                    Href("Talk to us", href="/contact", cls="btn btn-secondary"),
                    cls="cta-actions",
                ),
                cls="cta-content",
            ),
            cls="container",
        ),
        cls="tool-cta-section",
    )