simple-fs-server/routes/index.tsx

25 lines
631 B
TypeScript
Raw Normal View History

2023-01-05 18:18:07 +09:00
import { Head } from "$fresh/runtime.ts";
export default function Home() {
return (
<>
<Head>
<title>Simple file server</title>
</Head>
<div class="p-4 mx-auto max-w-screen-md">
<img
src="/logo.svg"
class="w-32 h-32"
alt="the fresh logo: a sliced lemon dripping with juice"
/>
<p class="my-6">
This is a simple file server. It serves files from the <code>CWD</code>.
</p>
<a href="/dir/">Go To CWD</a>
<hr></hr>
<a href="/login">Login</a> | <a href="/api/logout">Logout</a>
</div>
</>
);
}