Halves component source
components/halves/SourceLink.tsx
export function SourceLink({ file }: { file: string }) {
return (
<a
className="source-link"
href={`/source?file=${encodeURIComponent(file)}`}
target="_blank"
rel="noreferrer"
>
{file} ↗
</a>
);
}