Skip to content

Commit

Permalink
makeup
Browse files Browse the repository at this point in the history
  • Loading branch information
manglemix committed Jan 14, 2025
1 parent 3b4dd67 commit 12db830
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
8 changes: 5 additions & 3 deletions usr-web/src/routes/(apps)/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@

<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={`${base}/scheduler`}>Scheduler</a>
<!-- <a href={`${base}/manifest`}>Manifest</a> -->
<a href={`/${base}`}>
<enhanced:img src="$lib/icon.png" alt="Utah Student Robotics" class="logo" />
</a>
<a href={`/${base}/scheduler`}>Scheduler</a>
<!-- <a href={`/${base}/manifest`}>Manifest</a> -->
</nav>
</header>

Expand Down
4 changes: 4 additions & 0 deletions usr-web/src/routes/(apps)/scheduler/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,10 @@
});
</script>

<svelte:head>
<title>USR Scheduler</title>
</svelte:head>

<section id="schedule-operations">
<div id="schedule-tabs" class="flex flex-row">
<button
Expand Down
8 changes: 6 additions & 2 deletions usr-web/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,21 @@
<h1 class="mb-8 mt-8 text-center text-5xl font-bold">Utah Student Robotics<br />Web Apps</h1>
<enhanced:img src="$lib/icon.png" alt="Utah Student Robotics" class="hero-image" />
<section class="mt-8 flex flex-col gap-4">
<a class="app-card scheduler" href={`${base}/scheduler`}>
<a class="app-card scheduler" href={`/${base}/scheduler`}>
<h2>Scheduler</h2>
<p>A unified schedule for Utah Student Robotics</p>
</a>
<!-- <a class="app-card manifest" href={`${base}/manifest`}>
<!-- <a class="app-card manifest" href={`/${base}/manifest`}>
<h2>Manifest</h2>
<p>Internal tracking of orders and inventory</p>
</a> -->
</section>
</div>

<svelte:head>
<title>USR Web Apps</title>
</svelte:head>

<style>
.app-card {
border-radius: 1rem;
Expand Down
Binary file modified usr-web/static/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 12db830

Please sign in to comment.