--- import type { Locale } from '@i18n/locales'; import { useDict } from '@i18n/t'; import Base from '@layouts/Base.astro'; import { getProfile, getMeta } from '@lib/content'; import SectionLabel from '@components/ui/SectionLabel.astro'; import Portrait from '@components/ui/Portrait.astro'; interface Props { locale: Locale; } const { locale } = Astro.props; const d = useDict(locale); const profile = getProfile(locale); const m = getMeta('about', locale); ---

{profile.aboutHeading}

{ profile.aboutParagraphs.map((para) => (

{para}

)) }

{d.about.interests} {profile.interestsLine}