We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5115cea commit b28ea64Copy full SHA for b28ea64
1 file changed
src/pages/Maintenance.tsx
@@ -0,0 +1,15 @@
1
+import React from 'react';
2
+import { FaTools } from 'react-icons/fa';
3
+const Maintenance = () => (
4
+ <div className='min-h-screen bg-gradient-to-br from-blue-600 to-indigo-700 flex items-center justify-center px-4'>
5
+ <div className='text-center text-white max-w-md'>
6
+ <FaTools className='text-6xl mx-auto mb-6 opacity-80' />
7
+ <h1 className='text-4xl font-bold mb-4'>Under Maintenance</h1>
8
+ <p className='text-xl text-blue-100 mb-6'>We are performing scheduled maintenance. We will be back shortly!</p>
9
+ <div className='bg-white/10 backdrop-blur-sm rounded-2xl p-6'>
10
+ <p className='text-sm text-blue-200'>Estimated completion: <span className='font-bold text-white'>30 minutes</span></p>
11
+ </div>
12
13
14
+);
15
+export default Maintenance;
0 commit comments