import { AppConfig } from '@/app.config';
import { QRCodeSVG } from 'qrcode.react';
export default function QRWidget() {
return (
<>
<div className="p-3 max-w-[128px]">
<QRCodeSVG
className="max-h-full max-w-full size-full"
bgColor="transparent"
fgColor="hsl(var(--foreground)/ 0.6)"
value={AppConfig.origin}
/>
</div>
</>
);
}