"use client"; import { ChevronDown, Plus } from "lucide-react"; import { cn } from "@/lib/utils"; import { Avatar, AvatarFallback } from "@/components/ui/avatar"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { CopyField, FieldLabel, SettingsCard, SettingsSection, ToggleRow, whiteButton, } from "@/components/settings/settings-parts"; const customerNotifications = [ { title: "Order confirmation", description: "Sent when a customer completes a one-time purchase", }, { title: "Subscription confirmation", description: "Sent when a customer starts a new subscription", }, { title: "Subscription cycled", description: "Sent when a subscription automatically renews", }, { title: "Trial converted", description: "Sent when a trial ends and the subscription becomes paid", }, { title: "Renewal reminder", description: "Sent 7 days before a subscription with a long billing cycle renews", }, { title: "Trial conversion reminder", description: "Sent before a trial ends and converts to a paid subscription", }, { title: "Subscription updated", description: "Sent when a customer changes their subscription to a different product", }, ]; export function PreferencesPanel() { return ( <>
Logo K
Organization Name
Country
Website
Support Email
Social Media

Your personal social media links are used for identity verification. They will never be shown publicly.

{customerNotifications.map((item) => ( ))}

You don't have any active organization access tokens.

Delete Organization

Permanently delete this organization and all associated data. This action cannot be undone.

); }