import { useTranslations } from "next-intl" import { AboutItem } from "./AboutItem.tsx" import { BirthDate } from "./BirthDate.tsx" export interface AboutListProps {} export const AboutList: React.FC = () => { const t = useTranslations() return ( ) }