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 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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:+60192290504" 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/60192290504" 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. {{-- tambah 2 lagi nombor pic --}}
  28. {{-- <div class="flex justify-between">
  29. <p class="font-medium text-gray-600">Nama</p>
  30. <div class="flex space-x-3">
  31. <a href="tel:+6" class="flex items-center space-x-2 font-medium text-blue-900">//masuk no phone
  32. <i class="fa-solid fa-phone-volume text-2xl"></i>
  33. </a>
  34. <a href="https://wa.me/6" target="_blank" class="flex items-center space-x-2 font-medium text-green-600">//masuk no phone
  35. <i class="fa-brands fa-whatsapp text-3xl"></i>
  36. </a>
  37. </div>
  38. </div>
  39. <div class="flex justify-between">
  40. <p class="font-medium text-gray-600">Nama</p>
  41. <div class="flex space-x-3">
  42. <a href="tel:+6" class="flex items-center space-x-2 font-medium text-blue-900">//masuk no phone
  43. <i class="fa-solid fa-phone-volume text-2xl"></i>
  44. </a>
  45. <a href="https://wa.me/6" target="_blank" class="flex items-center space-x-2 font-medium text-green-600"> //masuk no phone
  46. <i class="fa-brands fa-whatsapp text-3xl"></i>
  47. </a>
  48. </div>
  49. </div> --}}
  50. </div>
  51. <div class="modal-action">
  52. <form method="dialog">
  53. <!-- if there is a button, it will close the modal -->
  54. <button class="btn">Tutup</button>
  55. </form>
  56. </div>
  57. </div>
  58. </dialog>