blob: 71712eb99603428a3b213a85afd1d4690276450c (
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="m-4 flex flex-col space-y-2 rounded-md border bg-white p-4">
<p className="text-2xl">Settings</p>
<ChangePassword />
<ApiKeySettings />
</div>
);
}
|