zero-knowledge file sharing
1import type { ParentProps } from "solid-js";
2
3export default function App(props: ParentProps) {
4 return (
5 <div class="text-text flex min-h-dvh flex-col items-center justify-center px-4 font-sans">
6 <div class="mt-6 w-full max-w-2xl">{props.children}</div>
7 <a
8 class="text-muted hover:text-accent-hover mt-auto p-4 text-[10px]"
9 href="https://github.com/notjuliet/drop"
10 >
11 source code
12 </a>
13 </div>
14 );
15}