--- import { ArrowUpRight } from 'lucide-react'; import Footer from '@/components/Footer.astro'; import NavBar from '@/components/NavBar/NavBar.astro'; import { GITHUB_REPO_URL, MUX_SUPPORT_URL } from '@/consts'; import Base from '@/layouts/Base.astro'; const tiles = [ { title: 'Community Support', body: 'No promises or guarantees.', cta: { label: 'Submit an issue', href: `${GITHUB_REPO_URL}issues/new/choose` }, }, { title: 'Contribute', body: "We're excited to help you!", cta: { label: 'Check out the docs.', href: `${GITHUB_REPO_URL}blob/main/CONTRIBUTING.md` }, }, { title: 'Offer a Bounty', body: 'Create a bid for your feature to be built or bug to be fixed. Community members can then elect to do the work.', cta: { label: 'More details coming soon' }, }, { title: 'Enterprise-grade', body: ['Provided by Mux', 'Starting at $20k/yr.'], cta: { label: 'Get in touch', href: MUX_SUPPORT_URL, }, }, ] as const; ---

Support

{ tiles.map((tile) => (

{tile.title}

{Array.isArray(tile.body) ? (
{tile.body.map((line) => (

{line}

))}
) : (

{tile.body}

)} {"href" in tile.cta ? ( {tile.cta.label} ) : ( {tile.cta.label} )}
)) }