interface WaitlistMessageProps { content: "waitlist" | "sign-in"; } export function WaitlistMessage({ content }: WaitlistMessageProps) { return (

{content === "sign-in" && "Sign in with GitHub"} {content === "waitlist" && "Just a little longer!"}

{content === "sign-in" && (

or{" "} join the waitlist {" "} if you haven't already

)} {content === "waitlist" && (

Thanks for your patience! We're accepting new members progressively. If you haven't joined the waitlist yet, now's the time!

)}
); }