import { FreshContext } from "$fresh/server.ts"; import { Partial } from "$fresh/runtime.ts"; import { AuthenticatedState } from "$root/defaults/interfaces.ts"; import Navbar from "$root/routes/(_islands)/Navbar.tsx"; // deno-lint-ignore require-await export default async function AppLayout( request: Request, context: FreshContext, ) { const pathname = new URL(request.url).pathname; const currentApp = pathname.split("/")[1]; return (
); }