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

Binary file not shown.

View File

@@ -1,5 +1,6 @@
<script> <script>
import Hero from './Hero.svelte'; import Hero from './Hero.svelte';
import cv from '$lib/files/CV_Theodor_Vallier.pdf';
</script> </script>
<svelte:head> <svelte:head>
@@ -9,6 +10,9 @@
<section> <section>
<Hero /> <Hero />
<h1 class="cv">
<a href={cv} download="CV_Vallier_Theodor.pdf">Dowload my CV</a>
</h1>
</section> </section>
<style> <style>
@@ -19,4 +23,17 @@
align-items: center; align-items: center;
flex: 0.6; 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> </style>

View File

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