"use client" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" import { Label } from "@/components/ui/label" import { Switch } from "@/components/ui/switch" import { Button } from "@/components/ui/button" import { toast } from "sonner" const notifications = [ { id: "lead-assigned", title: "Lead Assigned", description: "When a lead is assigned to you", defaultChecked: true, }, { id: "lead-status", title: "Status Changes", description: "When a lead's status is updated", defaultChecked: true, }, { id: "note-added", title: "Note Added", description: "When a note is added to your lead", defaultChecked: false, }, { id: "daily-digest", title: "Daily Digest", description: "Receive a daily summary of lead activity", defaultChecked: false, }, { id: "weekly-report", title: "Weekly Report", description: "Receive a weekly performance report", defaultChecked: true, }, ] export function NotificationSettings() { return ( Notification Settings Configure which notifications you want to receive. {notifications.map((n, i) => (

{n.description}

))}
) }