Components
A sign-in form with email and password fields whose submit button shows an inline loading spinner while signing in and a success state when done.
Loading preview...
import Particle from "@/components/ui/v-spinner-14";
export default function Default() {
return (
<div className="flex min-h-[420px] w-full items-center justify-center bg-background p-8">
<Particle />
</div>
);
}