Refactor profile management text

Update the description text in ProfileManagement.tsx.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 04:31:52 +00:00
parent b298bedaa6
commit a3bd9c53cd

View File

@@ -1,8 +1,10 @@
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,
@@ -29,6 +31,7 @@ const SettingsOption = ({
</div>
</div>;
};
const Settings = () => {
const navigate = useNavigate();
return <div className="min-h-screen bg-neuro-background pb-24">
@@ -52,7 +55,7 @@ const Settings = () => {
{/* Settings Options */}
<div className="space-y-4 mb-8">
<h2 className="text-sm font-medium text-gray-500 mb-2 px-2"></h2>
<SettingsOption icon={User} label="프로필 관리" description="개인정보 및 프로필 설정" onClick={() => navigate('/profile-management')} />
<SettingsOption icon={User} label="프로필 관리" description="프로필 및 비밀번호 설정" onClick={() => navigate('/profile-management')} />
<SettingsOption icon={CreditCard} label="결제 방법" description="카드 및 은행 계좌 관리" />
<SettingsOption icon={Bell} label="알림 설정" description="앱 알림 및 리마인더" onClick={() => navigate('/notification-settings')} />
</div>
@@ -75,4 +78,5 @@ const Settings = () => {
<NavBar />
</div>;
};
export default Settings;
export default Settings;