Add index page, favicon, robots.txt and sitemap.xml

This commit is contained in:
Paul Nicoué 2022-12-08 15:17:39 +01:00
parent 820907c3c2
commit cb904127c0
26 changed files with 4163 additions and 2638 deletions

View file

@ -1,8 +1,12 @@
<template>
<div>
<MainTitle></MainTitle>
</div>
<main>
<div class="title">
<h1 class="title__name">Paul Nicoué</h1>
<div class="title__separator"></div>
<h2 class="title__job">Intégrateur web & développeur full stack</h2>
</div>
</main>
</template>
@ -17,3 +21,42 @@
})
</script>
<style lang="scss">
main {
padding: 4rem 2rem;
}
.title {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-width: 50vw;
text-align: center;
&__name {
opacity: 0;
margin: 0 2rem;
animation: fade-in-from-bottom 400ms ease-in-out 400ms forwards;
}
&__separator {
width: 0;
height: 1px;
margin: 0.5rem auto;
background-color: var(--emerald);
animation: expand-width 400ms ease-in-out forwards;
}
&__job {
opacity: 0;
font-size: var(--h2-font-size);
font-weight: var(--light-font-weight);
margin: 0 2rem;
animation: fade-in-from-top 400ms ease-in-out 400ms forwards;
}
}
</style>