mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-22 14:57:40 +01:00
cec0744907
Co-authored-by: Jip Frijlink <JipFr@users.noreply.github.com> Co-authored-by: William Oldham <github@binaryoverload.co.uk>
17 lines
632 B
TypeScript
17 lines
632 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 DeveloperPage() {
|
|
return (
|
|
<div className="py-48">
|
|
<Navigation />
|
|
<ThinContainer classNames="flex flex-col space-y-4">
|
|
<Title>Developer tools</Title>
|
|
<ArrowLink to="/dev/video" direction="right" linkText="Video tester" />
|
|
<ArrowLink to="/dev/test" direction="right" linkText="Test page" />
|
|
</ThinContainer>
|
|
</div>
|
|
);
|
|
}
|