aboutsummaryrefslogtreecommitdiff
path: root/src/routes/+page.svelte
blob: d9ec52fe59e51759ad3093baea5ff152b5057c87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<script lang="ts">
  import '../app.scss'
  import { base } from '$app/paths'
  import { socials } from '$lib/socials.json'

  type Social = {
    name: string,
    link: string
  }

  const socialsList: Social[] = socials
</script>

<svelte:head>
  <title>pml68</title>
</svelte:head>

<div class="main">
  <h1>pml68</h1>
  <p>Just your average IT student</p>
  <div class="socials">
    {#each socialsList as {name, link}}
      <a href={link} target="_blank" class="icon" aria-label={name}>
        <svg viewBox="0 0 512 512" class="social-icon">
          <use href={`/${name}.svg#${name}`} />
        </svg>
      </a>
    {/each}
  </div>
  <br>
  <div class="projects">
    Check out my projects <a href={base + '/projects'}><b>here</b></a>
  </div>
</div>