About page

This commit is contained in:
2023-08-18 15:33:31 +02:00
parent 6dc6002061
commit e69cc1d91f
19 changed files with 240 additions and 50 deletions

View File

@@ -1,5 +1,11 @@
<script setup>
<script setup lang="ts">
useHead({
title: 'About me • Arthur Danjou',
})
const { data: skills } = await useSkills()
const { data: educations } = await useEducations()
const { data: experiences } = await useWorkExperiences()
</script>
<template>
@@ -33,6 +39,21 @@
In addition to my studies and programming, I go to the gym every day to relax and stay in shape. Sport allows me to recharge my batteries and move on to other things.
</GridSlot>
</GridSection>
<GridSection v-if="skills" title="Skills">
<div class="grid grid-cols-3 md:grid-cols-4 gap-2">
<Skill
v-for="skill in skills.body"
:key="skill.name"
:skill="skill"
/>
</div>
</GridSection>
<GridSection v-if="experiences" title="Work Experiences">
<Experience v-for="experience in experiences" :key="experience.title" :experience="experience" />
</GridSection>
<GridSection v-if="educations" title="Educations">
<Education v-for="education in educations" :key="education.title" :education="education" />
</GridSection>
</div>
</section>
</template>