--- import type { Diploma } from '@/types/sections/education-section.types'; import Description from '@/web/components/description.astro'; import LinkButton from '@/web/components/link-button.astro'; import Thumbnail from '@/web/components/thumbnail.astro'; import Timestamp from '@/web/components/timestamp.astro'; import Typography from '@/web/components/typography.astro'; export interface Props extends Diploma {} const { title, institution, dates, description, links, image } = Astro.props; ---
{title} {institution}
{ links.length > 0 && (
{links.map((link) => ( ))}
) }