Skip to content

Commit

Permalink
Adjust links for the new trailingSlash build rule
Browse files Browse the repository at this point in the history
  • Loading branch information
addisonbeck committed Sep 19, 2023
1 parent 45f5b96 commit 3746b00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/lib/components/Nav.svelte
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script lang="ts">
export let title: { large: string, small: string, href: string } | null = { large: "ADDISON BECK", small: "AB:", href: "/" };
export let sections: { title: string, href: string }[] = [
// { title: "about", href: "about" },
{ title: "resume", href: "resume" },
{ title: "contact", href: "contact" },
// { title: "about", href: "/about" },
{ title: "resume", href: "/resume" },
{ title: "contact", href: "/contact" },
]
export let allCaps: boolean = true;
</script>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/SiteSummary.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<strong>Yes, yes,</strong> I understand that this stack might be overkill for a small personal site. I don't have a boss here! I hope you like it.
</p>
<p>
If you want to read more about me you can do that <a class="site-summary-link" href="about">here</a>. If after that you want my resume, you can grab that <a class="self-summary-link" href="resume">here</a>. If you want to skip straight to sending over an offer you can get in touch with me <a class="self-summary-link" href="contact">here</a>.
If you want to read more about me you can do that <a class="site-summary-link" href="/about">here</a>. If after that you want my resume, you can grab that <a class="self-summary-link" href="/resume">here</a>. If you want to skip straight to sending over an offer you can get in touch with me <a class="self-summary-link" href="/contact">here</a>.
</p>
</div>
</div>
Expand Down

0 comments on commit 3746b00

Please sign in to comment.