import { EmptyState } from '@/components/ui/feedback/EmptyState';
import { Maintenance } from '@/components/ui/feedback/EmptyState/illustrations/Maintenance';

interface Props {
  title: string;
  body: string;
}

export function SystemPageMaintenance({ title, body }: Props) {
  return (
    <div className="flex min-h-[60dvh] items-center justify-center px-4 py-16">
      <EmptyState illustration={<Maintenance />} title={title} description={body} />
    </div>
  );
}
