PronounsPage/components/Contribute.vue
2022-08-16 20:29:01 +02:00

36 lines
922 B
Vue

<template>
<section>
<h3>
<Icon v="people-carry"/>
<T>contact.contribute.header</T>
</h3>
<p>
<T>contact.contribute.intro</T>
</p>
<div class="row small">
<div v-for="(icon, area) in areas" class="col-12 col-lg-3">
<h4 class="h4 mt-3">
<Icon :v="icon"/>
<T>contact.contribute.{{area}}.header</T>
</h4>
<T>contact.contribute.{{area}}.description</T>
</div>
</div>
</section>
</template>
<script>
export default {
data() {
return {
areas: {
entries: 'database',
translations: 'language',
version: 'globe-africa',
technical: 'code-merge',
},
}
},
};
</script>