--- import type { Testimonial } from '@/types/sections/testimonials-section.types'; import LinkButton from '@/web/components/link-button.astro'; import Typography from '@/web/components/typography.astro'; import Description from '@/web/components/description.astro'; import Thumbnail from '@/web/components/thumbnail.astro'; export interface Props extends Testimonial {} const { author, content, image, links, relation } = Astro.props; ---
{author} {relation}
{ links.length > 0 && (
{links.map((link) => ( ))}
) }