import { generateQRCodeBase64 } from '../utils/generateQrCode';
export const DemoTemplate = async () => {
const qrCode = await generateQRCodeBase64('https://satori.vercel.app/');
return (
<div
style={{
width: '100%',
height: '100%',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#f0f0f0',
padding: '40px',
borderRadius: '10px',
fontSize: '48px',
fontFamily: 'Inter, sans-serif',
fontWeight: 700,
}}
>
<img
src={qrCode}
alt="QR Code"
style={{ width: '200px', height: '200px' }}
/>
Hello Satori!
</div>
);
};