blob: 059660b7339630086145a9521372792f86d3b9fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import ApiKeySettings from "@/components/dashboard/settings/ApiKeySettings";
import { ChangePassword } from "@/components/dashboard/settings/ChangePassword";
export default async function Settings() {
return (
<div className="flex flex-col space-y-2 rounded-md border bg-background p-4">
<p className="text-2xl">Settings</p>
<ChangePassword />
<ApiKeySettings />
</div>
);
}
|