started implementing radarr and sonarr

This commit is contained in:
Chris Kruining 2025-06-05 20:24:17 +02:00
parent 7b363964f7
commit f198d98437
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
23 changed files with 45022 additions and 15 deletions

View file

@ -0,0 +1,23 @@
import { A } from "@solidjs/router";
import { ParentProps } from "solid-js";
export default function Experimental(props: ParentProps) {
return (
<div style={{ overflow: "auto" }}>
<nav
style={{
position: "sticky",
"inset-block-start": 0,
display: "flex",
gap: "var(--size-2)",
}}
>
<A href="/">Home</A>
<A href="/experimental/sonarr">Sonarr</A>
<A href="/experimental/radarr">Radarr</A>
</nav>
<main>{props.children}</main>
</div>
);
}