mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-14 12:14:42 +01:00
27 lines
734 B
Vue
Executable File
27 lines
734 B
Vue
Executable File
<template>
|
|
<section class="w-full mb-10">
|
|
<h3 class="font-bold text-2xl md:text-4xl">
|
|
{{ $t('about.title.languages') }}
|
|
<LanguageIcon />
|
|
</h3>
|
|
<div>
|
|
<table class="text-base text-xl text-gray-700 dark:text-gray-400">
|
|
<tr>
|
|
<td class="font-bold py-2 pr-4">{{ $t('about.languages.fr')}} 🇫🇷</td>
|
|
<td class="py-2 px-4">{{ $t('about.languages.native') }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="font-bold py-2 pr-4">{{ $t('about.languages.en')}} 🇬🇧</td>
|
|
<td class="py-2 px-4">{{ $t('about.languages.fluent') }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "LanguagesAbout",
|
|
}
|
|
</script>
|