import React from 'react'; import { useNavigate } from 'react-router-dom'; import NavBar from '@/components/NavBar'; import { User, CreditCard, Bell, Lock, HelpCircle, LogOut, ChevronRight } from 'lucide-react'; import { cn } from '@/lib/utils'; const SettingsOption = ({ icon: Icon, label, description, onClick, color = "text-neuro-income" }: { icon: React.ElementType; label: string; description?: string; onClick?: () => void; color?: string; }) => { return (

{label}

{description &&

{description}

}
); }; const Settings = () => { const navigate = useNavigate(); return (
{/* Header */}

설정

{/* User Profile */}

홍길동

honggildong@example.com

{/* Settings Options */}

계정

navigate('/profile-management')} /> navigate('/notification-settings')} />

앱 설정

navigate('/security-privacy-settings')} />

앱 버전 1.0.0

); }; export default Settings;