Files
website-old/src/pages/about.vue
2021-10-27 21:14:14 +02:00

28 lines
753 B
Vue
Executable File

<template>
<main class="flex flex-col items-center mb-8 px-4 xl:px-64">
<PresentationAbout />
<SkillsAbout />
<InterestsAbout />
<LanguagesAbout />
<FormationsAbout />
<ExperiencesAbout />
<a href="/resume.pdf" target="_blank" class="z-index-3 duration-150 transform hover:scale-105">
<div class="text-lg px-8 py-4 rounded-xl border-2 border-red-500 dark:border-amber-400 hover:(bg-red-500 dark:bg-amber-400 text-white) dark:hover:text-black text-red-500 dark:text-amber-400 duration-300">
{{ $t('about.cv') }}
</div>
</a>
</main>
</template>
<script>
export default {
name: "about",
head() {
return {
title: `${this.$i18n.t('header.about')} - Arthur Danjou`
}
}
}
</script>