--- import type { servicesSchema } from '@/content.config' import type { z } from 'astro:content' type Props = z.infer & { highlighted?: boolean } const { title, description, charachteristics, highlighted = false, link } = Astro.props ---

{title}

{description && {description}}
{ link && ( {link.title} ) }