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