A notification settings card that groups toggle switches by category like security, social, and billing.
import { Notifications2 } from "@/components/ui/notifications-2"; export default function Demo() { return ( <div className="flex min-h-screen w-full items-center justify-center bg-background p-6"> <div className="w-full max-w-sm"> <Notifications2 /> </div> </div> ); }