Skip to content

Commit

Permalink
path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
manglemix committed Jan 13, 2025
1 parent 2d4fb98 commit f4e39ca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions usr-web/src/routes/(apps)/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<script lang="ts">
import { base } from '$app/paths';
let { children } = $props();
</script>

<header class="fixed top-0 w-full p-2 shadow">
<nav class="flex flex-row items-center gap-4">
<enhanced:img src="$lib/icon.png" alt="Utah Student Robotics" class="logo" />
<a href="/scheduler">Scheduler</a>
<a href="/manifest">Manifest</a>
<a href={`${base}/scheduler`}>Scheduler</a>
<a href={`${base}/manifest`}>Manifest</a>
</nav>
</header>

Expand Down

0 comments on commit f4e39ca

Please sign in to comment.