"use client"; import { useState } from "react"; import { Dashboard } from "@/components/layout/Dashboard"; import { SettingsNav } from "@/components/features/settings/SettingsNav"; export default function SettingsPage() { const [activeSection, setActiveSection] = useState("profile"); return (
{activeSection === "profile" && (

Profile Information

)} {activeSection === "security" && (

Security Settings

)} {activeSection === "api-keys" && (

API Key Management

Create and manage API keys for external applications.

)} {activeSection === "notifications" && (

Notification Preferences

Price Alerts
Get notified when prices change significantly
Trade Confirmations
Receive notifications for completed trades
)}
); }