import type React from "react" /** * Minimal layout for embed routes — no Navigation, no AudienceModeProvider * audience bar. Designed for iframe embedding on third-party sites. * Pages under /embed/* render a single self-contained surface * (leaderboard, distribution, frontier, etc.) at the size the parent * iframe allocates. * * A small EvalEval brand mark sits in the top-left corner of every * embed and links out to the canonical Evaluation Cards site, so embed * viewers can always trace the data back to the source. */ export default function EmbedLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (
Evaluation Cards · EvalEval {children}
) }