💻 | Adapt About page + Working

This commit is contained in:
2021-04-08 22:47:06 +02:00
parent 09abc1ea9c
commit 1b63219086
13 changed files with 276 additions and 193 deletions

View File

@@ -0,0 +1,25 @@
<template>
<section class="flex flex-col md:flex-row justify-center items-center py-8">
<div class="md:mr-12">
<img class="logo-img rounded-full my-5 shadow-lg" src="@/assets/images/Logo.jpg" alt="It's me !" />
</div>
<div class="ml-2 text-lg leading-6 md:w-2/3 text-justify dark:text-gray-400 text-gray-700">
<p>{{ $t('about.banner.hello') }} <span class="text-orange-400 font-bold">Arthur DANJOU</span> 👋.</p> <br/>
<p>{{ $t('about.banner.1')}}</p> <br/>
<p>{{ $t('about.banner.2') }}</p> <br/>
<p>{{ $t('about.banner.3') }}</p>
</div>
</section>
</template>
<script>
export default {
name: "SkillsAbout"
}
</script>
<style scoped lang="scss">
.logo-img {
height: 25rem;
}
</style>