Skip to content

Commit

Permalink
refactor(portal): update root page with notice of overhaul
Browse files Browse the repository at this point in the history
  • Loading branch information
taronaeo committed Apr 12, 2024
1 parent 02f1d2e commit d39abd1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
5 changes: 3 additions & 2 deletions portal/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script lang="ts"></script>

<div class="dark w-full h-screen min-h-screen
text-white bg-background">
<div
class="dark w-full h-screen min-h-screen
text-white bg-background">
<slot />
</div>
17 changes: 15 additions & 2 deletions portal/src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
<script lang="ts">
import * as Card from '$lib/components/ui/card';
</script>

<svelte:head>
<title>RIVAlumni Portal</title>
<title>Home - RIVAlumni Portal</title>
</svelte:head>

<p>This page is supposed to be empty for now.</p>
<div
class="w-full h-full
flex flex-col justify-center items-center">
<Card.Root class="m-6 max-w-md">
<Card.Header>
<Card.Title>System is being overhauled</Card.Title>
<Card.Description>
If you are a beta-tester, please use the link provided by the System
Administrator.
</Card.Description>
</Card.Header>
</Card.Root>
</div>

0 comments on commit d39abd1

Please sign in to comment.