mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-22 15:42:40 +00:00
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
import { ThinContainer } from "@/components/layout/ThinContainer";
|
||
import { Heading1, Paragraph } from "@/components/utils/Text";
|
||
import { SubPageLayout } from "@/pages/layouts/SubPageLayout";
|
||
import { ConfigValuesPart } from "@/pages/parts/admin/ConfigValuesPart";
|
||
import { M3U8TestPart } from "@/pages/parts/admin/M3U8TestPart";
|
||
import { RegionSelectorPart } from "@/pages/parts/admin/RegionSelectorPart";
|
||
import { TMDBTestPart } from "@/pages/parts/admin/TMDBTestPart";
|
||
import { WorkerTestPart } from "@/pages/parts/admin/WorkerTestPart";
|
||
|
||
import { BackendTestPart } from "../parts/admin/BackendTestPart";
|
||
import { EmbedOrderPart } from "../parts/admin/EmbedOrderPart";
|
||
|
||
export function AdminPage() {
|
||
return (
|
||
<SubPageLayout>
|
||
<ThinContainer>
|
||
<Heading1>Admin tools</Heading1>
|
||
<Paragraph>Silly tools used test P-Stream! ૮₍´˶• . • ⑅ ₎ა</Paragraph>
|
||
|
||
<ConfigValuesPart />
|
||
<BackendTestPart />
|
||
<WorkerTestPart />
|
||
<TMDBTestPart />
|
||
<M3U8TestPart />
|
||
<RegionSelectorPart />
|
||
<EmbedOrderPart />
|
||
</ThinContainer>
|
||
</SubPageLayout>
|
||
);
|
||
}
|