2026-02-27 04:29:51 +00:00
|
|
|
import ApiKeyInput from "./ApiKeyInput";
|
|
|
|
|
import DockerSettings from "./DockerSettings";
|
2026-02-27 15:22:49 +00:00
|
|
|
import AwsSettings from "./AwsSettings";
|
2026-02-27 04:29:51 +00:00
|
|
|
|
|
|
|
|
export default function SettingsPanel() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="p-4 space-y-6">
|
|
|
|
|
<h2 className="text-xs font-semibold uppercase text-[var(--text-secondary)]">
|
|
|
|
|
Settings
|
|
|
|
|
</h2>
|
|
|
|
|
<ApiKeyInput />
|
|
|
|
|
<DockerSettings />
|
2026-02-27 15:22:49 +00:00
|
|
|
<AwsSettings />
|
2026-02-27 04:29:51 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|