import { BellRing, Check } from "lucide-react" import { Button } from "@/components/ui/button" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "@/components/ui/card" import { Switch } from "@/components/ui/switch" import { cn } from "@/lib/utils" const notifications = [ { title: "Your call has been confirmed.", description: "1 hour ago", }, { title: "You have a new message!", description: "1 hour ago", }, { title: "Your subscription is expiring soon!", description: "2 hours ago", }, ] export function CardDemo({ className, ...props }) { return ( Notifications You have 3 unread messages.

Push Notifications

Send notifications to device.

{notifications.map((notification, index) => (

{notification.title}

{notification.description}

))}
) }