import React, { useState } from "react"; import { SystemPromptsSettings } from "./settings/SystemPromptsSettings"; type SettingsSection = "system-prompts"; interface SettingsPageProps { onClose: () => void; } export function SettingsPage({ onClose }: SettingsPageProps) { const [activeSection, setActiveSection] = useState("system-prompts"); return (
{/* Header — matches the main app header height/style */}
\u2699 Settings
{/* Side nav */} {/* Content */}
{activeSection === "system-prompts" && }
); }