import { Head } from "$fresh/runtime.ts"; import { MainLayout } from "@components/layouts/main.tsx"; import { Card } from "@components/Card.tsx"; import { PageProps } from "$fresh/server.ts"; import { menu } from "@lib/menus.ts"; import { KMenu } from "@islands/KMenu.tsx"; export default function Home(props: PageProps) { return ( <> app
{menu.map((m) => { return ( ); })}
); }