import type { ReactNode } from 'react'; interface ErrorPageProps { title: string; subtitle: string; children?: ReactNode; } export default function ErrorPage(props: ErrorPageProps) { return (

{props.title}

{props.subtitle}

{props.children}
); }