--- import Button from '@/components/primitives/Button.astro'; import Card from '@/components/primitives/Card.astro'; import type { CtaLink } from '@/types/site'; interface Props { cta: CtaLink; points: string[]; title: string; } const { cta, points, title } = Astro.props; ---

{title}