2023-10-25 16:41:52 +02:00
|
|
|
import { ThinContainer } from "@/components/layout/ThinContainer";
|
|
|
|
import { Heading1, Paragraph } from "@/components/utils/Text";
|
|
|
|
import { SubPageLayout } from "@/pages/layouts/SubPageLayout";
|
2023-10-25 18:05:40 +02:00
|
|
|
import { ConfigValuesPart } from "@/pages/parts/admin/ConfigValuesPart";
|
|
|
|
import { TMDBTestPart } from "@/pages/parts/admin/TMDBTestPart";
|
2023-10-25 16:41:52 +02:00
|
|
|
import { WorkerTestPart } from "@/pages/parts/admin/WorkerTestPart";
|
|
|
|
|
2023-11-12 17:54:21 +01:00
|
|
|
import { BackendTestPart } from "../parts/admin/BackendTestPart";
|
|
|
|
|
2023-10-25 16:41:52 +02:00
|
|
|
export function AdminPage() {
|
|
|
|
return (
|
|
|
|
<SubPageLayout>
|
|
|
|
<ThinContainer>
|
|
|
|
<Heading1>Admin tools</Heading1>
|
|
|
|
<Paragraph>Useful tools to test out your current deployment</Paragraph>
|
|
|
|
|
2023-10-25 18:05:40 +02:00
|
|
|
<ConfigValuesPart />
|
2023-11-12 17:54:21 +01:00
|
|
|
<BackendTestPart />
|
2023-10-25 16:41:52 +02:00
|
|
|
<WorkerTestPart />
|
2023-10-25 18:05:40 +02:00
|
|
|
<TMDBTestPart />
|
2023-10-25 16:41:52 +02:00
|
|
|
</ThinContainer>
|
|
|
|
</SubPageLayout>
|
|
|
|
);
|
|
|
|
}
|