import { ReactNode } from 'react'; import SiteGrid from './SiteGrid'; import { clsx } from 'clsx/lite'; import { PATH_ROOT } from '@/app/paths'; import Link from 'next/link'; export default function HttpStatusPage({ status, children, }: { status: number children?: ReactNode }) { return (

{status}

{children &&
{children}
} Return Home
} /> ); }