46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
export default () => {
|
|
const { t } = useI18n()
|
|
return reactive({
|
|
fields: {
|
|
fullName: {
|
|
is: "InputText",
|
|
label: t("nameAndFamily"),
|
|
props: {
|
|
placeholder: ""
|
|
},
|
|
},
|
|
call: {
|
|
is: "InputText",
|
|
label: t("emailOrPhone"),
|
|
props: {
|
|
placeholder: "", style: 'direction: ltr'
|
|
},
|
|
},
|
|
content: {
|
|
is: "Textarea",
|
|
label: t("yourTextMessage"),
|
|
props: {
|
|
placeholder: ""
|
|
},
|
|
},
|
|
},
|
|
ways: [
|
|
{ icon: "isax-call", label: "phone", value: t("aboutUsPhone") },
|
|
{
|
|
icon: "isax-location",
|
|
label: "centeralOffice",
|
|
value: t("aboutUsAddress"),
|
|
},
|
|
],
|
|
map: {
|
|
props: { zoom: 17, center: [35.6995282, 51.3383703] },
|
|
layer: { url: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', name: 'OpenStreetMap' }
|
|
},
|
|
socials: [
|
|
{ icon: "linkedin", url: "/" },
|
|
{ icon: "telegram", url: "/" },
|
|
{ icon: "whatsapp", url: "/" },
|
|
{ icon: "twitter", url: "/" },
|
|
]
|
|
})
|
|
} |