defmodule PyrauiWeb.DocsLive.HeroDocs do use PyrauiWeb, :html def render(assigns) do ~H"""

Hero

Flexible hero banner with title, subtitle, CTA, and optional background image.

Product Launch Hero


    <.hero
      title="Ship Better Products"
      subtitle="Plan, collaborate, and deliver features."
      cta="Get Started"
      cta_href={~p"/signup"}
      background="https://example.com/hero.jpg"
    />
            

Custom Content

Reserve Seat Explore Agenda
""" end end