Files
jkhsakha-web/src/app/(client)/[slug]/error.tsx
2026-02-25 17:35:01 +09:00

15 lines
539 B
TypeScript
Raw 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.
'use client';
export default function Error() {
return (
<div className="container mx-auto py-16 max-w-3xl text-center">
<h1 className="text-2xl font-semibold mb-4">
500 Сервер временно недоступен
</h1>
<p className="text-gray-600">
Страница не может быть загружена прямо сейчас.
Пожалуйста, попробуйте позже.
</p>
</div>
);
}