Skip to content

Commit

Permalink
update vanity url
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Brunson committed Jun 9, 2023
1 parent 36224ab commit 6f366f9
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
6 changes: 6 additions & 0 deletions src/lib/components/NavBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import HomeIcon from "virtual:icons/bxs/home";
import GithubIcon from "virtual:icons/bxl/github";
import TwitterIcon from "virtual:icons/bxl/twitter";
import LinkedinIcon from "virtual:icons/bxl/linkedin-square";
</script>

<div class="nav-main">
Expand All @@ -16,6 +17,11 @@
<div class="nav-item ml-auto">
<a href="https://github.com/quilldev"> <GithubIcon /></a>
</div>
<!-- Linkedin -->
<div class="nav-item ml-auto">
<a href="https://www.linkedin.com/in/qdev"><LinkedinIcon /></a>
</div>

<!--Twitter Social -->
<div class="nav-item ml-auto">
<a href="https://twitter.com/quilldev"><TwitterIcon /></a>
Expand Down
32 changes: 20 additions & 12 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
import SvelteIcon from "virtual:icons/logos/svelte-icon";
import KubernetesIcon from "virtual:icons/logos/kubernetes";
import EmailIcon from "virtual:icons/bxs/envelope-open";
// platforms
import TwitterIcon from "virtual:icons/logos/twitter";
import DiscordIcon from "virtual:icons/logos/discord-icon";
import InstagramIcon from "virtual:icons/bxl/instagram";
import LinkedinIcon from "virtual:icons/logos/linkedin-icon";
</script>

<body>
Expand Down Expand Up @@ -72,7 +73,8 @@
<td>2 years</td>
</tr>
<tr>
<td class="exp-item"><KubernetesIcon class="mr-2" />Kubernetes</td>
<td class="exp-item"><KubernetesIcon class="mr-2" />Kubernetes</td
>
<td>2 years</td>
</tr>
<tr>
Expand All @@ -88,10 +90,17 @@
<div class="text-5xl mb-4">Contact Me</div>

<table class="m-auto">
<a href="mailto:me@quill.moe">
<a href="https://discord.com/channels/@me/217120695560306691">
<div class="flex text-3xl">
<EmailIcon class="mr-2" />
<div>me@quill.moe</div>
<DiscordIcon class="mr-2" />
<p>@quilldev</p>
</div>
</a>

<a href="https://instagram.com/quilldev">
<div class="flex text-3xl">
<InstagramIcon class="mr-2 text-white fill-white opacity-100" />
<p>@quilldev</p>
</div>
</a>
<a href="https://twitter.com/quilldev">
Expand All @@ -100,17 +109,16 @@
<p>@quilldev</p>
</div>
</a>

<a href="https://discord.com/channels/@me/217120695560306691">
<a href="www.linkedin.com/in/qdev">
<div class="flex text-3xl">
<DiscordIcon class="mr-2" />
<p>@quilldev</p>
<LinkedinIcon class="mr-2" />
<p>Robert Brunson</p>
</div>
</a>
<a href="https://instagram.com/quilldev">
<a href="mailto:me@quill.moe">
<div class="flex text-3xl">
<InstagramIcon class="mr-2 text-white fill-white opacity-100" />
<p>@quilldev</p>
<EmailIcon class="mr-2" />
<div>me@quill.moe</div>
</div>
</a>
</table>
Expand Down

0 comments on commit 6f366f9

Please sign in to comment.