mirror of
https://github.com/ArthurDanjou/artdanj-resume.git
synced 2026-01-14 20:59:54 +01:00
20 lines
420 B
Vue
20 lines
420 B
Vue
<script setup>
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
const { t } = useI18n()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="my-4 text-center sm:text-left">
|
|
<h1 class="font-black text-2xl">
|
|
Arthur DANJOU
|
|
</h1>
|
|
<h2 class="text-lg text-gray-600 dark:text-gray-400">
|
|
{{ t('header.job') }}
|
|
</h2>
|
|
<h3 class="text-sm text-gray-500 dark:text-gray-300 mt-2">
|
|
Paris, France
|
|
</h3>
|
|
</div>
|
|
</template>
|