Skip to content

Commit

Permalink
(fix): Link FIxes (#31)
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Justesen <[email protected]>
  • Loading branch information
ThatsOurJake and alexjustesen authored Dec 20, 2024
1 parent b3f883f commit a7be22e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/card.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const { desc, link, icon } = Astro.props;
---

<a
href={`https://${link}`}
href={link}
target='_blank'
class='bg-black/10 p-6 rounded-2xl border-white/10 border active:scale-95 duration-200 ease-in-out hover:brightness-200'
>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ const links: Link[] = [
</div>
<div class="flex justify-center gap-8">
<!-- Put some social links who have a definitive icon here: -->
<Chip link="github.com/alexjustesen" icon="fa-brands fa-github" />
<Chip link="x.com/alexjustesen" icon="fa-brands fa-x-twitter" />
<Chip link="https://github.com/alexjustesen" icon="fa-brands fa-github" />
<Chip link="https://x.com/alexjustesen" icon="fa-brands fa-x-twitter" />
</div>
<p class="text-center mx-auto hidden">Some additional text, like your email</p>
</main>
Expand Down

0 comments on commit a7be22e

Please sign in to comment.