removed the waitlist and added a link to the cards

This commit is contained in:
zach
2026-03-05 12:47:41 -05:00
parent c28f9a5e84
commit 692d06c35a

View File

@@ -4,7 +4,9 @@ import NavItems from '../components/NavItems.astro';
import NavBar from '../components/NavBar.astro'; import NavBar from '../components/NavBar.astro';
import Footer from '../components/Footer.astro'; import Footer from '../components/Footer.astro';
export const prerender = false; export const prerender = false;
import { Waitlist as WaitlistAstro } from '@clerk/astro/components' import { Waitlist as WaitlistAstro } from '@clerk/astro/components';
import { SignIn as SignInAstro } from '@clerk/astro/components';
import { Sign } from 'node:crypto';
--- ---
<Layout> <Layout>
<NavBar slot="navbar"> <NavBar slot="navbar">
@@ -13,20 +15,18 @@ import { Waitlist as WaitlistAstro } from '@clerk/astro/components'
<div class="row mb-4" slot="page"> <div class="row mb-4" slot="page">
<h1>Rigid's App Thing</h1> <h1>Rigid's App Thing</h1>
<h5 class="text-secondary">(working title)</h5> <h5 class="text-secondary">(working title)</h5>
<div class="col-12 col-md-6 col-xl-7 mb-2"> <div class="col-12 col-md-7 mb-2">
<h4 class="mt-3">Welcome!</h4> <h4 class="mt-3">Welcome!</h4>
<p class="mt-2"> <p class="mt-2">
This single-page web application is currently in a closed beta. Access to the beta will be limited, and the selection process will be highly curated. You are welcome to request access - if you do not get into the beta, don't worry! After the closed beta is complete, the app will move into a more open beta.</p> 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>
</p> </p>
<p class="my-2"> <p class="my-2">
If you would like to join the waitlist, please enter your email address. You will receive an email with instructions on how to access the app when it becomes available to you. 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!
</p>
<p class="my-2">
If you aren't interested in joining the waitlist, that is okay too! 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!
</p> </p>
<a href="/pokemon" class="btn btn-warning mt-2">Take me to the cards</a>
</div> </div>
<div class="col-12 col-md-6 col-xl-4 offset-xl-1"> <div class="col-12 col-md-4 offset-md-1">
<WaitlistAstro />
</div> </div>
</div> </div>
<Footer slot="footer" /> <Footer slot="footer" />