AddressSection.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <v-col cols="6" class="px-8">
  5. <ContactMap class="contact-map" />
  6. </v-col>
  7. <v-col cols="6" class="address-col px-8">
  8. <h4><v-icon icon="fas fa-envelope" /> Pour nous écrire</h4>
  9. <v-card>
  10. <div>2iOpenService</div>
  11. <div>217, rue Raoul Follereau</div>
  12. <div>74300 - Cluses</div>
  13. </v-card>
  14. <div class="mb-6" />
  15. <h4>
  16. <v-icon icon="fas fa-phone" />
  17. Ou par téléphone
  18. </h4>
  19. <div>
  20. <v-btn
  21. v-if="!revealPhoneNumber"
  22. @click="revealPhoneNumber = !revealPhoneNumber"
  23. >
  24. Cliquer pour afficher le numéro de téléphone
  25. </v-btn>
  26. <span v-else>
  27. <v-card>
  28. Contactez nous au
  29. <a href="tel:+33485300403"> 04.85.30.04.03 </a>
  30. </v-card>
  31. </span>
  32. </div>
  33. </v-col>
  34. </v-row>
  35. </LayoutContainer>
  36. </template>
  37. <script setup lang="ts">
  38. const revealPhoneNumber = ref(false)
  39. </script>
  40. <style scoped lang="scss">
  41. .container {
  42. width: 70%;
  43. }
  44. h4 {
  45. display: flex;
  46. flex-direction: row;
  47. color: var(--primary-color);
  48. font-size: 20px;
  49. font-weight: 500;
  50. margin: 24px 0;
  51. }
  52. .v-icon {
  53. margin-right: 16px;
  54. }
  55. .address-col > div,
  56. .address-col > .v-card > div {
  57. padding: 8px 16px;
  58. }
  59. .v-card {
  60. margin: 16px 64px;
  61. padding: 12px;
  62. }
  63. .v-btn {
  64. margin: 16px 64px;
  65. }
  66. a {
  67. color: var(--on-neutral-color);
  68. text-decoration: underline;
  69. }
  70. </style>