2023-02-22 19:02:23 +01:00
|
|
|
import { Navigation } from "@/components/layout/Navigation";
|
|
|
|
import { ThinContainer } from "@/components/layout/ThinContainer";
|
|
|
|
import { ArrowLink } from "@/components/text/ArrowLink";
|
|
|
|
import { Title } from "@/components/text/Title";
|
|
|
|
|
2023-08-20 18:45:07 +02:00
|
|
|
export default function DeveloperPage() {
|
2023-02-22 19:02:23 +01:00
|
|
|
return (
|
|
|
|
<div className="py-48">
|
|
|
|
<Navigation />
|
|
|
|
<ThinContainer classNames="flex flex-col space-y-4">
|
|
|
|
<Title className="mb-8">Developer tools</Title>
|
|
|
|
<ArrowLink to="/dev/video" direction="right" linkText="Video tester" />
|
2023-02-28 19:26:46 +01:00
|
|
|
<ArrowLink to="/dev/test" direction="right" linkText="Test page" />
|
2023-02-22 19:02:23 +01:00
|
|
|
</ThinContainer>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|