2023-11-24 13:59:33 +02:00
|
|
|
import { ApiTokenForm } from '~/components/forms/token';
|
|
|
|
|
|
2023-11-27 16:29:24 +02:00
|
|
|
export default function ApiToken() {
|
2023-11-24 13:59:33 +02:00
|
|
|
return (
|
|
|
|
|
<div>
|
2023-12-11 14:33:30 +02:00
|
|
|
<h3 className="text-lg font-medium">API Tokens</h3>
|
2023-11-24 13:59:33 +02:00
|
|
|
|
|
|
|
|
<p className="text-muted-foreground mt-2 text-sm">
|
|
|
|
|
On this page, you can create new API tokens and manage the existing ones.
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<hr className="my-4" />
|
|
|
|
|
|
2023-11-27 16:29:24 +02:00
|
|
|
<ApiTokenForm className="max-w-xl" />
|
2023-11-24 13:59:33 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|