aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/app/dashboard/settings/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/web/app/dashboard/settings/page.tsx')
-rw-r--r--packages/web/app/dashboard/settings/page.tsx10
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/web/app/dashboard/settings/page.tsx b/packages/web/app/dashboard/settings/page.tsx
new file mode 100644
index 00000000..e8799583
--- /dev/null
+++ b/packages/web/app/dashboard/settings/page.tsx
@@ -0,0 +1,10 @@
+import { Button } from "@/components/ui/button";
+import ApiKeySettings from "./components/ApiKeySettings";
+export default async function Settings() {
+ return (
+ <div className="m-4 flex flex-col space-y-2 rounded-md border bg-white p-4">
+ <p className="text-2xl">Settings</p>
+ <ApiKeySettings />
+ </div>
+ );
+}