--- import IconButton from '@/components/icon-button.astro'; import Photo from '@/components/photo.astro'; import Typography from '@/components/typography.astro'; import type { Testimonial } from '@/types/testimonials-section'; export interface Props { testimonial: Testimonial; } const { testimonial: { author, content, image, relation, socials }, } = Astro.props; ---
{author} {relation}
{ socials && (
{socials.map(({ icon, url, name }) => ( ))}
) }
{content}