pinball-frontend/app/components/qr-code-link.tsx (10 lines of code) (raw):

'use client' import QRCode from "react-qr-code"; export default function QRCodeLink({url}: {url: string}) { const size=200; return ( <div className={`invisible md:visible fixed bottom-4 right-4 h-[${size}px] w-[${size}px]`}> <QRCode value={url} size={size} /> </div> ); }