A settings card with a switch matrix table for toggling each notification type across email, push, and SMS channels.
import { Notifications1 } from "@/components/ui/notifications-1"; export default function Default() { return ( <div className="flex min-h-svh w-full items-center justify-center bg-background p-6"> <div className="w-full max-w-2xl"> <Notifications1 /> </div> </div> ); }