Skip to content

Commit 7fc2e74

Browse files
committed
fix weird space after links
1 parent 12c0842 commit 7fc2e74

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/Link.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ const { href, class: className } = Astro.props;
88
---
99

1010
<a href={href} class:list={["cursor-pointer text-teal underline", className]}>
11-
<slot />
12-
</a>
11+
<slot /></a
12+
>

src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import { Image } from "astro:assets";
1515
<p>Hey, I'm Jeff.</p>
1616
<p class="mt-2">
1717
I'm currently a Computer Science student at
18-
<Link href="https://www.mcgill.ca/">McGill University</Link>
19-
and an incoming intern at
18+
<Link href="https://www.mcgill.ca/">McGill University</Link> and an incoming
19+
intern at
2020
<Link href="https://1password.com/">1Password</Link> in the Developer Ecosystems
2121
team for Fall 2024.
2222
</p>

0 commit comments

Comments
 (0)