file upload develop

This commit is contained in:
smanylov
2025-12-24 15:41:06 +07:00
parent c38b7ee558
commit 8058be42c1
8 changed files with 235 additions and 84 deletions
+12
View File
@@ -0,0 +1,12 @@
import { useTranslations } from 'next-intl';
export default function PageTitle({ title }: { title: string }) {
const t = useTranslations('Global');
return (
<div className="page-title">
<h1>
{t(title)}
</h1>
</div>
)
}