Halves component source

components/halves/SourceLink.tsx

Back to the system
export function SourceLink({ file }: { file: string }) {
  return (
    <a
      className="source-link"
      href={`/source?file=${encodeURIComponent(file)}`}
      target="_blank"
      rel="noreferrer"
    >
      {file} ↗
    </a>
  );
}