cpns / apps /web /src /lib /route-shell.ts
rogasper's picture
feat: add support section to README, implement donation modal, and enhance routing with new dashboard and not found pages. Update sitemap for improved SEO and adjust navigation links to point to the dashboard. Introduce new package card component for better package management and enhance error handling in various components.
2a80c9b
Raw
History Blame Contribute Delete
212 Bytes
export type RouteShell = "public" | "fullscreen" | "app";
export const routeShell = {
public: { shell: "public" as const },
fullscreen: { shell: "fullscreen" as const },
app: { shell: "app" as const },
};