Skip to content

Commit

Permalink
fix(app): move alpha notice to component
Browse files Browse the repository at this point in the history
since we are now behind a login
  • Loading branch information
cor committed Jun 7, 2024
1 parent 8ecf635 commit 8a5fd77
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
13 changes: 13 additions & 0 deletions app/src/lib/components/alpha-notice.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<script lang="ts">
import * as Card from "$lib/components/ui/card/index.ts"
</script>

<Card.Root class="max-w-lg">
<Card.Header>
<Card.Title>Union App Alpha</Card.Title>
</Card.Header>
<Card.Content class="flex flex-col gap-2">
<p>Congratulations on finding the <b>Union App Alpha.</b></p>
<p>This App is unfinished and not meant for public use. However, feel free to click around to see what we are working on.</p>
</Card.Content>
</Card.Root>
10 changes: 1 addition & 9 deletions app/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,5 @@ import * as Card from "$lib/components/ui/card/index.ts"
</script>

<main class="flex flex-col items-center size-full p-4 mt-16">
<Card.Root class="max-w-lg">
<Card.Header>
<Card.Title>Union App Alpha</Card.Title>
</Card.Header>
<Card.Content class="flex flex-col gap-2">
<p>Congratulations on finding the <b>Union App Alpha.</b></p>
<p>This App is unfinished and not meant for public use. However, feel free to click around to see what we are working on.</p>
</Card.Content>
</Card.Root>

</main>

0 comments on commit 8a5fd77

Please sign in to comment.