import React, { ReactNode } from 'react'; interface ErrorPageContainerProps { children: ReactNode; errorCode: string; description: string; } /** * ErrorPageContainer * * A reusable container for error pages (404, 500, etc.) * Provides consistent styling and layout for error states. */ export function ErrorPageContainer({ children, errorCode, description, }: ErrorPageContainerProps) { return (

{errorCode}

{description}

{children}
); }