Added catalog generation, need to bug fix

This commit is contained in:
Kevin FEDYNA
2025-01-15 10:15:02 +01:00
parent ccad788e19
commit eea49969b5
17 changed files with 248 additions and 99 deletions
+13
View File
@@ -0,0 +1,13 @@
import { FreshContext } from "$fresh/server.ts";
import AppNavigator from "./(_islands)/AppNavigator.tsx";
// deno-lint-ignore require-await
export default async function About(_request: Request, _context: FreshContext) {
return (
<>
{
//<AppNavigator />
}
</>
);
}