Skip to content

Commit dc2af05

Browse files
committed
add: socials row
1 parent 0c6427a commit dc2af05

2 files changed

Lines changed: 39 additions & 2 deletions

File tree

src/App.svelte

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script lang="ts">
22
import MainBird from "./lib/components/MainBird.svelte";
33
import Clock from "./lib/components/Clock.svelte";
4+
import SocialsRow from "./lib/components/SocialsRow.svelte";
45
56
import { theme } from "./lib/state/theme.svelte";
67
import { onMount } from "svelte";
@@ -15,7 +16,7 @@
1516
1617
function removeScrollIndicator() {
1718
scrollIndicator.classList.remove("animate-bounce");
18-
scrollIndicator.classList.add("slide-down")
19+
scrollIndicator.classList.add("slide-down");
1920
window.removeEventListener("scroll", removeScrollIndicator);
2021
}
2122
@@ -24,13 +25,15 @@
2425
});
2526
</script>
2627

27-
<header class="fixed flex flex-row bg-transparent"></header>
2828
<main class="flex flex-col justify-center items-center">
2929
<Clock />
3030
<MainBird />
3131
<h1 class="text-2xl md:text-4xl text-center mt-5">
3232
hi, i'm jackson,<br />a software developer
3333
</h1>
34+
35+
<div class="h-8"></div>
36+
<SocialsRow />
3437
</main>
3538
<div class="fixed bottom-0 w-full flex justify-center pb-1">
3639
<svg
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<div class="flex flex-row gap-8">
2+
<a
3+
href="https://youtube.com/@jumpyjacko"
4+
target="_blank"
5+
aria-label="Youtube link to jumpyjacko's channel"
6+
>
7+
<svg
8+
xmlns="http://www.w3.org/2000/svg"
9+
width="32"
10+
height="32"
11+
viewBox="0 0 24 24"
12+
><path
13+
fill="currentColor"
14+
d="M23.498 6.186a3.02 3.02 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.02 3.02 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.02 3.02 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.02 3.02 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814M9.545 15.568V8.432L15.818 12z"
15+
/></svg
16+
>
17+
</a>
18+
<a
19+
href="https://github.com/jumpyjacko"
20+
target="_blank"
21+
aria-label="Github link to jumpyjacko's profile"
22+
>
23+
<svg
24+
xmlns="http://www.w3.org/2000/svg"
25+
width="32"
26+
height="32"
27+
viewBox="0 0 24 24"
28+
><path
29+
fill="currentColor"
30+
d="M12 .297c-6.63 0-12 5.373-12 12c0 5.303 3.438 9.8 8.205 11.385c.6.113.82-.258.82-.577c0-.285-.01-1.04-.015-2.04c-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729c1.205.084 1.838 1.236 1.838 1.236c1.07 1.835 2.809 1.305 3.495.998c.108-.776.417-1.305.76-1.605c-2.665-.3-5.466-1.332-5.466-5.93c0-1.31.465-2.38 1.235-3.22c-.135-.303-.54-1.523.105-3.176c0 0 1.005-.322 3.3 1.23c.96-.267 1.98-.399 3-.405c1.02.006 2.04.138 3 .405c2.28-1.552 3.285-1.23 3.285-1.23c.645 1.653.24 2.873.12 3.176c.765.84 1.23 1.91 1.23 3.22c0 4.61-2.805 5.625-5.475 5.92c.42.36.81 1.096.81 2.22c0 1.606-.015 2.896-.015 3.286c0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"
31+
/></svg
32+
>
33+
</a>
34+
</div>

0 commit comments

Comments
 (0)