Wedding Invitation
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

contact-modal.blade.php 2.6KB

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