Files
imphnen-frontend-service/apps/hackathon/src/app/maintenance/page.tsx
T

24 lines
742 B
TypeScript
Raw Normal View History

2025-11-28 17:40:34 +07:00
import { Link } from 'react-router';
2025-11-27 23:46:52 +07:00
export default function MaintenancePage() {
return (
<div className="flex justify-center items-center min-h-screen bg-gray-50 dark:bg-gray-950 px-4">
<div className="text-center">
<h1 className="text-6xl font-bold text-yellow-600 mb-4">🚧</h1>
<h2 className="text-3xl font-semibold mb-2">We'll be back soon!</h2>
<p className="text-gray-600">
Our site is currently undergoing scheduled maintenance.
<br />
Thank you for your patience.
</p>
2025-11-28 17:40:34 +07:00
<Link
to="/"
2025-11-27 23:46:52 +07:00
className="mt-4 inline-block text-primary-600 hover:underline"
>
Back to Homepage
2025-11-28 17:40:34 +07:00
</Link>
2025-11-27 23:46:52 +07:00
</div>
</div>
);
}