aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/settings/page.tsx
blob: 38091e6cdace8e3c75fef2e9119278ca88c89322 (plain) (blame)
1
2
3
4
5
6
7
8
9
import ApiKeySettings from "@/components/dashboard/settings/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>
  );
}