blank-rebuild.tsx14 lines · main
1/** Simple empty state for Auth tabs that are not filled in yet. */
2
3export function AuthRebuildBlank({ title }: { title: string }) {
4 return (
5 <section className="rounded-md border border-[var(--color-border-subtle)] bg-[var(--color-surface)] p-6">
6 <h2 className="font-sans text-base font-medium text-[var(--color-text)]">
7 {title}
8 </h2>
9 <p className="mt-2 max-w-md font-mono text-xs leading-relaxed text-[var(--color-text-muted)]">
10 nothing here yet. check back after setup, or use another Auth tab.
11 </p>
12 </section>
13 );
14}