fix: add content to expertise pages

This commit is contained in:
2025-07-08 16:21:40 +03:00
parent 919c3c462e
commit 3e2426424d
148 changed files with 3708 additions and 169 deletions

View File

@@ -0,0 +1,25 @@
import s from './styles.module.scss';
type DocumentsProps = {
title: string;
description?: string;
docs: string[];
};
function Documents({ title, description, docs }: DocumentsProps) {
return (
<section className={s.Section}>
<h3 className={s.Header}>{title}</h3>
<p className={s.Text}>{description}</p>
<ul className={s.List}>
{docs.map((document, index) => (
<li key={index} className={s.ListItem}>
{document}
</li>
))}
</ul>
</section>
);
}
export { Documents };