/** * PlaceholderPage * * A small, reusable component to render consistent placeholder pages. * * UX rule: * - All user-facing text must be German. */ export default function PlaceholderPage({ title, description, params, children, }) { return (

{title}

{description ? (

{description}

) : null}

Routenparameter

{params ? (
							{JSON.stringify(params, null, 2)}
						
) : (

Keine Parameter für diese Route.

)} {children ?
{children}
: null}
); }