UnderConstruction.vue 583 B

123456789101112131415
  1. <template>
  2. <main class="flex w-full h-full justify-center items-center">
  3. <div class="w-full sm:w-1/2">
  4. <img
  5. src="@/assets/under-construction.png"
  6. class="rounded-xl ring-4 ring-offset-4 ring-gray-500 shadow"
  7. />
  8. <p class="text-center mt-5 text-lg">
  9. Our <strong>Builders 💪</strong> are working very hard to get this page online <strong>ASAP</strong>
  10. <br /><strong class="text-rose-500">Please stand by...</strong>
  11. </p>
  12. </div>
  13. </main>
  14. </template>