mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-30 02:53:32 +00:00
24 lines
858 B
TypeScript
24 lines
858 B
TypeScript
import { ThinContainer } from "@/components/layout/ThinContainer";
|
||
import { Heading1, Heading2, Paragraph } from "@/components/utils/Text";
|
||
import { SubPageLayout } from "@/pages/layouts/SubPageLayout";
|
||
import { ConfigValuesPart } from "@/pages/parts/admin/ConfigValuesPart";
|
||
import { TMDBTestPart } from "@/pages/parts/admin/TMDBTestPart";
|
||
import { WorkerTestPart } from "@/pages/parts/admin/WorkerTestPart";
|
||
|
||
import { BackendTestPart } from "../parts/admin/BackendTestPart";
|
||
|
||
export function AdminPage() {
|
||
return (
|
||
<SubPageLayout>
|
||
<ThinContainer>
|
||
<Heading1>Admin tools</Heading1>
|
||
<Paragraph>Silly tools used test sudo-flix! ૮₍´˶• . • ⑅ ₎ა</Paragraph>
|
||
|
||
<ConfigValuesPart />
|
||
<BackendTestPart />
|
||
<WorkerTestPart />
|
||
<TMDBTestPart />
|
||
</ThinContainer>
|
||
</SubPageLayout>
|
||
);
|
||
}
|