Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.

This commit is contained in:
becarta
2025-05-23 12:43:00 +02:00
parent f40db0f5c9
commit a544759a3b
11127 changed files with 1647032 additions and 0 deletions

23
node_modules/@oslojs/encoding/README.md generated vendored Normal file
View File

@@ -0,0 +1,23 @@
# @oslojs/encoding
**Documentation: https://encoding.oslojs.dev**
A JavaScript library for encoding and decoding data with hexadecimal, base32, base64, and base64url encoding schemes based on [RFC 4648](https://datatracker.ietf.org/doc/html/rfc4648). Implementations may be stricter than most to follow the RFC as close as possible.
- Runtime-agnostic
- No third-party dependencies
- Fully typed
```ts
import { encodeBase64, decodeBase64 } from "@oslojs/encoding";
const data: Uint8Array = new TextEncoder().encode("hello world");
const encoded = encodeBase64(data);
const decoded = decodeBase64(encoded);
```
## Installation
```
npm i @oslojs/encoding
```