welcome.blade.php 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. @extends('layouts.master-without-nav')
  2. @section('title')
  3. @lang('translation.Maintenance')
  4. @endsection
  5. @section('body')
  6. <body>
  7. @endsection
  8. @section('content')
  9. <div class="home-btn d-none d-sm-block">
  10. <a href="index" class="text-dark"><i class="fas fa-home h2"></i></a>
  11. </div>
  12. <section class="my-5 pt-sm-5">
  13. <div class="container">
  14. <div class="row">
  15. <div class="col-12 text-center">
  16. <div class="home-wrapper">
  17. <div class="mb-5">
  18. <a href="/" class="d-block auth-logo">
  19. GoZap
  20. </a>
  21. </div>
  22. <div class="row justify-content-center">
  23. <div class="col-sm-4">
  24. <div class="maintenance-img">
  25. <img src="{{ URL::asset('/assets/images/maintenance.svg') }}" alt="" class="img-fluid mx-auto d-block">
  26. </div>
  27. </div>
  28. </div>
  29. <h3 class="mt-5">Site is Under Maintenance</h3>
  30. <p>Please check back in sometime.</p>
  31. <div class="row">
  32. <div class="col-md-4">
  33. <div class="card mt-4 maintenance-box">
  34. <div class="card-body">
  35. <i class="bx bx-broadcast mb-4 h1 text-primary"></i>
  36. <h5 class="font-size-15 text-uppercase">Why is the Site Down?</h5>
  37. <p class="text-muted mb-0">There are many variations of passages of
  38. Lorem Ipsum available, but the majority have suffered alteration.</p>
  39. </div>
  40. </div>
  41. </div>
  42. <div class="col-md-4">
  43. <div class="card mt-4 maintenance-box">
  44. <div class="card-body">
  45. <i class="bx bx-time-five mb-4 h1 text-primary"></i>
  46. <h5 class="font-size-15 text-uppercase">
  47. What is the Downtime?</h5>
  48. <p class="text-muted mb-0">Contrary to popular belief, Lorem Ipsum is not
  49. simply random text. It has roots in a piece of classical.</p>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="col-md-4">
  54. <div class="card mt-4 maintenance-box">
  55. <div class="card-body">
  56. <i class="bx bx-envelope mb-4 h1 text-primary"></i>
  57. <h5 class="font-size-15 text-uppercase">
  58. Do you need Support?</h5>
  59. <p class="text-muted mb-0">If you are going to use a passage of Lorem
  60. Ipsum, you need to be sure there isn't anything embar.. <a
  61. href="mailto:no-reply@domain.com"
  62. class="text-decoration-underline">no-reply@domain.com</a></p>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. <!-- end row -->
  68. </div>
  69. </div>
  70. </div>
  71. </div>
  72. </section>
  73. @endsection