Skip to content

Commit

Permalink
fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrossh committed Feb 22, 2024
1 parent fa80d41 commit 2a59083
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
16 changes: 13 additions & 3 deletions src/lib/components/SocialLinks.svelte
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
<div class="flex hover:no-underline text-white child:mx-2 sm:child:ml-5">
<a href="https://linkedin.com/in/pyrossh" title="My LinkedIn profile">
<a
href="https://linkedin.com/in/pyrossh"
title="My LinkedIn profile"
target="_blank"
rel="noopener noreferrer"
>
<div class="i-mdi-linkedin w-8 h-8 mr-2" />
</a>
<a href="https://github.com/pyrossh" title="My GitHub profile">
<a
href="https://github.com/pyrossh"
title="My GitHub profile"
target="_blank"
rel="noopener noreferrer"
>
<div class="i-mdi-github w-8 h-8 mr-2" />
</a>
<a href="mailto:[email protected]" title="My email">
<a href="mailto:[email protected]" title="My email" target="_blank" rel="noopener noreferrer">
<div class="i-mdi-email-outline w-8 h-8 mr-2" />
</a>
</div>
1 change: 0 additions & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
onMount(() => {
page.subscribe(($page) => {
isPosts = $page.url.pathname.includes('posts');
console.log(isPosts);
});
});
</script>
Expand Down
7 changes: 6 additions & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@
<h1 class="text-3xl font-bold mb-4">Hello!</h1>
<p>
I'm
<a class="underline" href="https://www.linkedin.com/in/pyrossh">
<a
class="underline"
href="https://www.linkedin.com/in/pyrossh"
target="_blank"
rel="noopener noreferrer"
>
<strong>Peter John</strong>
</a>, a fullstack developer from Bengaluru, India. I love writing code and I am lucky enough
to do this as my job.
Expand Down

0 comments on commit 2a59083

Please sign in to comment.