'use client'; import { QRCodeSVG } from 'qrcode.react'; import { useParams } from 'next/navigation'; export default function JoinPage() { const params = useParams(); const code = params.code as string; const joinUrl = `https://hatch.surf/join/${code}`; return (
{/* Main content */}
{/* Bilingual welcome phrase */}

Арга хэмжээнд тавтай морилно уу

Welcome to the event

{/* QR Code section */}
{/* Event info */}
Code: {code}
{/* Instructions */}

Scan the QR code above to join this event space.

You'll be able to see live HTTP requests and interact with the event.

{/* Footer */}

Powered by Hatch · Self-hostable HTTP request inspector

); }