import React from 'react'; import { useNavigate } from 'react-router-dom'; import NavBar from '@/components/NavBar'; import SyncSettings from '@/components/SyncSettings'; import AppVersionInfo from '@/components/AppVersionInfo'; import { User, CreditCard, Bell, Lock, HelpCircle, LogOut, ChevronRight } from 'lucide-react'; import { cn } from '@/lib/utils'; import { useAuth } from '@/contexts/auth'; import { useToast } from '@/hooks/useToast.wrapper'; import SafeAreaContainer from '@/components/SafeAreaContainer'; const SettingsOption = ({ icon: Icon, label, description, onClick, color = "text-neuro-income", disabled = false }: { icon: React.ElementType; label: string; description?: string; onClick?: () => void; color?: string; disabled?: boolean; }) => { return
{description}
}{user.email}
계정에 로그인하세요