Components
An inline info banner that prompts the user to verify their email, with a resend button that switches to a sent-confirmation state.
Loading preview...
import { Banner11 } from "@/components/ui/banner-11";
export default function Default() {
return (
<div className="flex w-full items-center justify-center bg-background p-8">
<div className="w-full max-w-xl">
<Banner11 />
</div>
</div>
);
}