maintenance.js 782 B

12345678910111213141516171819202122
  1. import React from 'react';
  2. import BasePage from '@/components/Layout/BasePage';
  3. const Maintenance = props => (
  4. <div className="abs-center">
  5. <div className="text-center my-3">
  6. <h1 className="mb-3">
  7. <sup>
  8. <em className="fa fa-cog fa-2x text-muted fa-spin text-info"></em>
  9. </sup>
  10. <em className="fa fa-cog fa-5x text-muted fa-spin text-purple"></em>
  11. <em className="fa fa-cog fa-lg text-muted fa-spin text-success"></em>
  12. </h1>
  13. <div className="text-bold text-lg mb-3">SITE IS UNDER MAINTENANCE</div>
  14. <p className="lead m-0">We'll back online shortly!</p>
  15. </div>
  16. </div>
  17. )
  18. Maintenance.Layout = BasePage
  19. export default Maintenance;