|
|
|
|
@ -1,21 +1,24 @@
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import LeftSection from "@/components/common/LeftSection.vue"; |
|
|
|
|
import EmailIcon from "@/components/icons/EmailIcon.vue"; |
|
|
|
|
import HouseIcon from "@/components/icons/HouseIcon.vue"; |
|
|
|
|
import PhoneIcon from "@/components/icons/PhoneIcon.vue"; |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
|
<LeftSection :title="$t('section.information')"> |
|
|
|
|
<div class="my-informations-line"> |
|
|
|
|
<font-awesome-icon icon="fa-solid fa-at" /> |
|
|
|
|
<EmailIcon width="20" height="20" /> |
|
|
|
|
<div>{{ infos.email }}</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="my-informations-line"> |
|
|
|
|
<font-awesome-icon icon="fa-solid fa-house-chimney" /> |
|
|
|
|
<HouseIcon width="20" height="20" /> |
|
|
|
|
<div class="my-informations-address"> |
|
|
|
|
<div v-for="line in infos.address" :key="line">{{ line }}</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="my-informations-line"> |
|
|
|
|
<font-awesome-icon icon="fa-solid fa-phone" /> |
|
|
|
|
<PhoneIcon width="20" height="20" /> |
|
|
|
|
<div>{{ infos.phoneNumber }}</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="my-informations-line"> |
|
|
|
|
|