Wedding Invitation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

contact-modal.blade.php 1.5KB

1234567891011121314151617181920212223242526272829303132333435
  1. <dialog id="contact" class="modal">
  2. <div class="modal-box w-11/12 max-w-5xl">
  3. <h3 class="text-lg font-bold">Hubungi PIC</h3>
  4. <div class="flex flex-col space-y-3 pt-2">
  5. <div class="flex justify-between">
  6. <p class="font-medium text-gray-600">Ariff</p>
  7. <div class="flex space-x-3">
  8. <a href="tel:+60124990504" class="flex items-center space-x-2 font-medium text-blue-900">
  9. <i class="fa-solid fa-phone-volume text-2xl"></i>
  10. </a>
  11. <a href="https://wa.me/60124990504" target="_blank" class="flex items-center space-x-2 font-medium text-green-600">
  12. <i class="fa-brands fa-whatsapp text-3xl"></i>
  13. </a>
  14. </div>
  15. </div>
  16. <div class="flex justify-between">
  17. <p class="font-medium text-gray-600">Akmal</p>
  18. <div class="flex space-x-3">
  19. <a href="tel:+60127605716" class="flex items-center space-x-2 font-medium text-blue-900">
  20. <i class="fa-solid fa-phone-volume text-2xl"></i>
  21. </a>
  22. <a href="https://wa.me/60127605716" target="_blank" class="flex items-center space-x-2 font-medium text-green-600">
  23. <i class="fa-brands fa-whatsapp text-3xl"></i>
  24. </a>
  25. </div>
  26. </div>
  27. </div>
  28. <div class="modal-action">
  29. <form method="dialog">
  30. <!-- if there is a button, it will close the modal -->
  31. <button class="btn">Tutup</button>
  32. </form>
  33. </div>
  34. </div>
  35. </dialog>