mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-05 12:07:22 -04:00
30 lines
764 B
Vue
30 lines
764 B
Vue
<script setup lang="ts">
|
|
const areas = {
|
|
entries: 'database',
|
|
version: 'globe-africa',
|
|
translations: 'language',
|
|
technical: 'code-merge',
|
|
};
|
|
</script>
|
|
|
|
<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>
|