This commit is contained in:
whidix
2022-12-31 18:50:10 +01:00
parent 41fc3cdbfc
commit fb0553912a
3 changed files with 18 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
<script>
import Hero from './Hero.svelte';
import cv from '$lib/files/CV_Theodor_Vallier.pdf';
</script>
<svelte:head>
@@ -9,6 +10,9 @@
<section>
<Hero />
<h1 class="cv">
<a href={cv} download="CV_Vallier_Theodor.pdf">Dowload my CV</a>
</h1>
</section>
<style>
@@ -19,4 +23,17 @@
align-items: center;
flex: 0.6;
}
.cv {
font-size: 1.5rem;
margin-top: 2rem;
padding: 1rem;
border-radius: 0.5rem;
background-color: var(--color-nav);
}
.cv a {
color: white;
text-decoration: none;
}
</style>

View File

@@ -33,7 +33,7 @@
</nav>
<div class="corner">
<a href="https://github.com/sveltejs/kit">
<a href="https://github.com/whidix">
<img src={github} alt="GitHub" />
</a>
</div>