- Neues Impressum/Datenschutz-Tab mit konfigurierbaren rechtlichen Daten - Konfigurationsdatei legal-config.ts für alle rechtlichen Informationen - RPC-Endpoint legal.getConfig() für rechtliche Daten - Schöne Tab-Navigation zwischen Impressum und Datenschutz - Responsive Design mit Loading-States und Fehlerbehandlung - Alle rechtlichen Daten über Umgebungsvariablen konfigurierbar - FRONTEND_URL entfernt - nur noch DOMAIN wird verwendet - Hilfsfunktion generateUrl() für konsistente URL-Generierung - Code-Duplikation in bookings.ts eliminiert - .env.example aktualisiert mit allen neuen Variablen - README.md dokumentiert neue rechtliche Konfiguration - DSGVO- und TMG-konforme Inhalte implementiert
18 lines
442 B
TypeScript
18 lines
442 B
TypeScript
import { demo } from "./demo";
|
|
import { router as treatments } from "./treatments";
|
|
import { router as bookings } from "./bookings";
|
|
import { router as auth } from "./auth";
|
|
import { router as availability } from "./availability";
|
|
import { router as cancellation } from "./cancellation";
|
|
import { router as legal } from "./legal";
|
|
|
|
export const router = {
|
|
demo,
|
|
treatments,
|
|
bookings,
|
|
auth,
|
|
availability,
|
|
cancellation,
|
|
legal,
|
|
};
|