"use client"; import React from "react"; import { useTheme } from "next-themes"; import { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from "@/components/ui/card"; import { Label } from "@/components/ui/label"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; import { Separator } from "@/components/ui/separator"; import { Button } from "@/components/ui/button"; import { Paintbrush, User, Trash2, ExternalLink } from "lucide-react"; import Link from "next/link"; import { toast } from "sonner"; export default function SettingsPage() { const { theme, setTheme } = useTheme(); const handleDeleteAccount = () => { toast.warning("Account deletion is not yet implemented.", { description: "This feature will be available in a future update.", action: { label: "Close", onClick: () => toast.dismiss() }, }); }; return (
Permanently delete your account and all associated data. This action cannot be undone.