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 | export type RouteShell = "public" | "fullscreen" | "app"; | |
| export const routeShell = { | |
| public: { shell: "public" as const }, | |
| fullscreen: { shell: "fullscreen" as const }, | |
| app: { shell: "app" as const }, | |
| }; | |