import { Head } from "$fresh/runtime.ts"; import { get_pages_meta, PageDescription } 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) { return ( <> stock-front
the fresh logo: a sliced lemon dripping with juice

Stock

); }