mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-11 17:55:33 +00:00
27 lines
901 B
TypeScript
27 lines
901 B
TypeScript
import { Navigation } from "@/components/layout/Navigation";
|
|
import { ThinContainer } from "@/components/layout/ThinContainer";
|
|
import { ArrowLink } from "@/components/text/ArrowLink";
|
|
import { Title } from "@/components/text/Title";
|
|
|
|
export default function DeveloperView() {
|
|
return (
|
|
<div className="py-48">
|
|
<Navigation />
|
|
<ThinContainer classNames="flex flex-col space-y-4">
|
|
<Title className="mb-8">Developer tools</Title>
|
|
<ArrowLink
|
|
to="/dev/providers"
|
|
direction="right"
|
|
linkText="Provider tester"
|
|
/>
|
|
<ArrowLink
|
|
to="/dev/embeds"
|
|
direction="right"
|
|
linkText="Embed scraper tester"
|
|
/>
|
|
<ArrowLink to="/dev/video" direction="right" linkText="Video tester" />
|
|
<ArrowLink to="/dev/test" direction="right" linkText="Test page" />
|
|
</ThinContainer>
|
|
</div>
|
|
);
|
|
}
|