klg-asutk-app/app/offline/page.tsx

15 lines
624 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 OfflinePage() {
return (
<div className="min-h-screen flex items-center justify-center bg-gray-100">
<div className="text-center max-w-md p-8">
<div className="text-6xl mb-4"></div>
<h1 className="text-2xl font-bold text-primary-500 mb-2">Нет подключения</h1>
<p className="text-gray-500 mb-6">Проверьте интернет-соединение и попробуйте снова.</p>
<button onClick={() => window.location.reload()} className="btn-primary">Обновить</button>
</div>
</div>
);
}