--- import Card from '@/components/primitives/Card.astro'; import type { FeatureItemContent } from '@/types/site'; interface Props { item: FeatureItemContent; } const { item } = Astro.props; --- {item.eyebrow && (

{item.eyebrow}

)}

{item.title}

{item.description}

{(item.meta || item.href) && (
{item.meta && {item.meta}} {item.href && ( Learn more )}
)}