feat(settings): add settings pages and layout with routing

This commit is contained in:
2025-10-20 18:25:44 +08:00
parent 85eb3ab3da
commit 73510a3b74
12 changed files with 128 additions and 21 deletions

View File

@@ -0,0 +1,5 @@
export { default as ModelsSetting } from './models';
export { default as SystemSetting } from './system';
export { default as TeamsSetting } from './teams';
export { default as ProfileSetting } from './profile';
export { default as MCPSetting } from './mcp';

View File

@@ -0,0 +1,8 @@
function MCPSetting() {
return (
<div>
<h1>MCP Setting</h1>
</div>
);
}
export default MCPSetting;

View File

@@ -0,0 +1,9 @@
function ModelsSetting() {
return (
<div>
<h1>Model Setting</h1>
</div>
);
}
export default ModelsSetting;

View File

@@ -0,0 +1,9 @@
function ProfileSetting() {
return (
<div>
<h1>Profile Setting</h1>
</div>
);
}
export default ProfileSetting;

View File

@@ -0,0 +1,9 @@
function SystemSetting() {
return (
<div>
<h1>System Setting</h1>
</div>
);
}
export default SystemSetting;

View File

@@ -0,0 +1,9 @@
function TeamsSetting() {
return (
<div>
<h1>Teams Setting</h1>
</div>
);
}
export default TeamsSetting;