"use client";

import { HumanReviewPanel } from "@/components/ui/bounding-box-citations";

export default function Default() {
  return (
    <div className="mx-auto flex w-full max-w-2xl items-center justify-center p-6">
      <div className="w-full overflow-hidden rounded-lg border bg-background shadow-sm">
        <HumanReviewPanel className="!h-[680px]" />
      </div>
    </div>
  );
}
