update errors handler

This commit is contained in:
smanylov
2026-02-04 13:21:32 +07:00
parent 362df2f609
commit 584f0dda2f
9 changed files with 140 additions and 20 deletions
View File
+46
View File
@@ -0,0 +1,46 @@
import { IconImageFile, IconVideoFile, IconAudioFile, IconDocument } from '@/app/ui/icons/icons';
export function SupportedFormats() {
return (
<div className="supported-formats">
<div className="formats-title">
Поддерживаемые форматы
</div>
<div className="format-group">
<div className="format-type image">
<IconImageFile /> Изображения
</div>
<div className="format-list">
JPEG, PNG, GIF, BMP
</div>
</div>
<div className="format-group hidden">
<div className="format-type video">
<IconVideoFile /> Видео
</div>
<div className="format-list">
MP4, AVI, MOV, WMV
</div>
</div>
<div className="format-group hidden">
<div className="format-type audio">
<IconAudioFile /> Аудио
</div>
<div className="format-list">
MP3, WAV, FLAC, AAC
</div>
</div>
<div className="format-group hidden">
<div className="format-type document">
<IconDocument /> Документы
</div>
<div className="format-list">
PDF, DOC, DOCX
</div>
</div>
</div>
)
}