2023-07-23 00:32:54 +09:00
|
|
|
import { Head } from "$fresh/runtime.ts";
|
|
|
|
import { useSignal } from "@preact/signals";
|
|
|
|
import {Button} from "../components/Button.tsx";
|
|
|
|
import { PageDescription, get_pages_meta } from "../pages.ts";
|
|
|
|
import { Handlers, PageProps } from "$fresh/server.ts";
|
|
|
|
|
|
|
|
export const handler: Handlers = {
|
|
|
|
async GET(_req, ctx){
|
|
|
|
const [pages,_] = await get_pages_meta();
|
|
|
|
return await ctx.render(pages);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function Home({data}: PageProps<PageDescription[]>) {
|
|
|
|
const count = useSignal(3);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Head>
|
|
|
|
<title>stock-front</title>
|
|
|
|
</Head>
|
|
|
|
<div class="px-4 py-8 mx-auto bg-[#86efac]">
|
|
|
|
<div class="max-w-screen-md mx-auto flex flex-col items-center justify-center">
|
|
|
|
<img
|
|
|
|
class="my-6"
|
|
|
|
src="/logo.svg"
|
|
|
|
width="128"
|
|
|
|
height="128"
|
|
|
|
alt="the fresh logo: a sliced lemon dripping with juice"
|
|
|
|
/>
|
|
|
|
<h1 class="text-4xl font-bold">Stock</h1>
|
|
|
|
<div class="my-4">
|
|
|
|
<ul>
|
|
|
|
{
|
|
|
|
data.map(x=><li class="my-2">
|
2023-07-24 11:21:26 +09:00
|
|
|
<a class="p-2 block hover:bg-gray-300 bg-white rounded" href={`/pages/${encodeURIComponent(x.name)}`}>
|
2023-07-23 00:32:54 +09:00
|
|
|
{x.name}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|