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 { resources } from "@lib/resources.ts"; export default function Home(props: PageProps) { return ( <> app
{Object.values(resources).map((m) => { return ( ); })}
); }