2026-02-07 13:36:51 -05:00
---
2026-02-25 14:12:11 -05:00
import Layout from '../layouts/Main.astro';
2026-02-26 18:08:08 -05:00
import NavItems from '../components/NavItems.astro';
import NavBar from '../components/NavBar.astro';
2026-02-27 15:20:55 -05:00
import Footer from '../components/Footer.astro';
2026-02-25 14:12:11 -05:00
export const prerender = false;
2026-03-05 15:24:08 -05:00
import { Show, SignInButton, SignUpButton, SignOutButton } from '@clerk/astro/components'
2026-02-07 13:36:51 -05:00
---
<Layout>
2026-02-26 18:08:08 -05:00
<NavBar slot="navbar">
<NavItems slot="navItems" />
</NavBar>
<div class="row mb-4" slot="page">
<h1>Rigid's App Thing</h1>
<h5 class="text-secondary">(working title)</h5>
2026-03-05 15:24:08 -05:00
<div class="col-12 col-md-6 mb-2">
2026-02-26 18:08:08 -05:00
<h4 class="mt-3">Welcome!</h4>
<p class="mt-2">
2026-03-05 12:47:41 -05:00
You've been selected to participate in the closed beta! This single page web application is meant to elevate condition/variant data for the Pokemon TCG. In future iterations, we will add vendor inventory/collection management features, as well.</p>
2026-02-26 18:08:08 -05:00
</p>
<p class="my-2">
2026-03-05 12:47:41 -05:00
After the closed beta is complete, the app will move into a more open beta. Feel free to play "Who's that Pokémon?" with the random Pokémon generator <a href="/404">here</a>. Refresh the page to see a new Pokémon!
2026-02-26 18:08:08 -05:00
</p>
2026-03-05 15:24:08 -05:00
<Show when="signed-in">
<a href="/pokemon" class="btn btn-warning mt-2">Take me to the cards</a>
</Show>
2026-02-26 18:08:08 -05:00
</div>
2026-03-05 15:24:08 -05:00
<div class="col-12 col-md-6 d-flex flex-row gap-5 justify-content-end">
<div>
<Show when="signed-out">
<!-- Using Bootstrap btn classes -->
<SignInButton asChild mode="modal">
<button class="btn btn-success">
Sign In
</button>
</SignInButton>
<SignUpButton asChild mode="modal">
<button class="btn btn-dark">
Request Access
</button>
</SignUpButton>
</Show>
</div>
<div>
<Show when="signed-in">
<SignOutButton asChild mode="modal">
<button class="btn btn-danger">
Sign Out
</button>
</SignOutButton>
</Show>
</div>
2026-02-26 18:08:08 -05:00
</div>
</div>
2026-02-27 15:20:55 -05:00
<Footer slot="footer" />
2026-02-26 18:08:08 -05:00
</Layout>