diff options
| author | pml68 <tutorialmester@gmail.com> | 2024-01-20 12:21:44 +0100 |
|---|---|---|
| committer | pml68 <tutorialmester@gmail.com> | 2024-01-20 12:21:44 +0100 |
| commit | 75403945f76ec979d589a058986272f547e50598 (patch) | |
| tree | ba635175597fad1388e31db9976ba834fc662bae /src/routes/+page.svelte | |
| parent | chore: update packages (diff) | |
| download | pml68.dev-75403945f76ec979d589a058986272f547e50598.tar.gz | |
feat: add projects page (empty for now)
Diffstat (limited to 'src/routes/+page.svelte')
| -rw-r--r-- | src/routes/+page.svelte | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index bf4cb17..4391bf3 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,5 +1,7 @@ <script lang="ts"> import '../app.scss' + import { base } from '$app/paths' + import wave1 from '$lib/assets/wave1.svg' import wave2 from '$lib/assets/wave2.svg' @@ -17,18 +19,18 @@ <title>pml68</title> </svelte:head> -<img src={wave1} alt="Wave 1" class="wave wave1"> -<img src={wave2} alt="Wave 2" class="wave wave2"> -<div class="container"> - <div class="main"> - <h1>pml68</h1> - <p>Just your average IT student</p> - <div class="socials"> - {#each socialsList as {link, icon}} - <a href={link} target="_blank"> - <i class={'social-icon fa-brands ' + icon}></i> - </a> - {/each} - </div> +<div class="main"> + <h1>pml68</h1> + <p>Just your average IT student</p> + <div class="socials"> + {#each socialsList as {link, icon}} + <a href={link} target="_blank"> + <i class={'social-icon fa-brands ' + icon}></i> + </a> + {/each} + </div> + <br> + <div class="projects"> + Check out my projects <a href={base + '/projects'}><b>here ⮞</b></a> </div> </div> |
