export function PageTitle({ code, title, text }: { code: string; title: string; text: string }) { return (
{code}

{title}

{text}

); }