started implementing radarr and sonarr
This commit is contained in:
parent
7b363964f7
commit
f198d98437
23 changed files with 45022 additions and 15 deletions
23
src/routes/experimental.tsx
Normal file
23
src/routes/experimental.tsx
Normal 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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue