2024-12-08 20:12:52 +03:00

14 lines
374 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { useTranslations } from 'next-intl';
export function About() {
const t = useTranslations('About');
return (
<section id="about">
<h2 className="text-xl font-bold">Обо мне</h2>
<div className="prose dark:prose-invert max-w-full text-pretty font-sans text-sm text-muted-foreground">
{t('summary')}
</div>
</section>
);
}