import React from 'react'; import type { Metadata } from 'next'; import ZoomGenerator from './ZoomGenerator'; import { Video, Shield, Zap, Smartphone, Users, Download, Share2 } from 'lucide-react'; import { QRCodeSVG } from 'qrcode.react'; import { ToolBreadcrumb } from '@/components/seo/BreadcrumbSchema'; import { RelatedTools } from '@/components/marketing/RelatedTools'; // SEO Optimized Metadata export const metadata: Metadata = { title: { absolute: 'Free Zoom QR Code Generator | Join Meetings Instantly | QR Master', }, description: 'Create a QR code for your Zoom meeting. Zoom QR Code erstellen. Attendees scan to join instantly. Perfect for conference rooms & invites.', keywords: ['zoom qr code', 'zoom meeting qr', 'join zoom qr code', 'meeting room qr', 'zoom invitation qr', 'conference qr code', 'zoom qr code erstellen', 'zoom meeting qr code', 'video konferenz qr', 'zoom beitreten qr'], alternates: { canonical: 'https://www.qrmaster.net/tools/zoom-qr-code', }, openGraph: { title: 'Free Zoom QR Code Generator | QR Master', description: 'Generate QR codes for Zoom meetings. One scan to join instantly.', type: 'website', url: 'https://www.qrmaster.net/tools/zoom-qr-code', images: [{ url: '/og-zoom-generator.png', width: 1200, height: 630 }], }, twitter: { card: 'summary_large_image', title: 'Free Zoom QR Code Generator', description: 'Create Zoom meeting QR codes. Instant and free.', }, robots: { index: true, follow: true, }, }; // JSON-LD Structured Data const jsonLd = { '@context': 'https://schema.org', '@graph': [ { '@type': 'SoftwareApplication', name: 'Zoom QR Code Generator', applicationCategory: 'BusinessApplication', operatingSystem: 'Web Browser', offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD', }, aggregateRating: { '@type': 'AggregateRating', ratingValue: '4.8', ratingCount: '720', }, description: 'Generate QR codes that let people join your Zoom meeting with one scan.', }, { '@type': 'HowTo', name: 'How to Create a Zoom QR Code', description: 'Create a QR code for joining Zoom meetings.', step: [ { '@type': 'HowToStep', position: 1, name: 'Enter Meeting ID', text: 'Copy the 10-11 digit meeting ID from your Zoom invitation.', }, { '@type': 'HowToStep', position: 2, name: 'Add Passcode', text: 'If your meeting has a passcode, enter it to include in the QR.', }, { '@type': 'HowToStep', position: 3, name: 'Choose Link Type', text: 'Select whether to open Zoom app directly or use a web link.', }, { '@type': 'HowToStep', position: 4, name: 'Download', text: 'Download your QR code and display it in your meeting room or invitation.', }, ], totalTime: 'PT30S', }, { '@type': 'FAQPage', mainEntity: [ { '@type': 'Question', name: 'What happens when someone scans the QR code?', acceptedAnswer: { '@type': 'Answer', text: 'The Zoom app opens directly with your meeting ID and passcode pre-filled. They just tap "Join" to enter the meeting.', }, }, { '@type': 'Question', name: 'Does it work for recurring meetings?', acceptedAnswer: { '@type': 'Answer', text: 'Yes! If your recurring meeting uses a fixed Personal Meeting ID (PMI), the QR code will work for all sessions.', }, }, { '@type': 'Question', name: 'What if the meeting ID changes?', acceptedAnswer: { '@type': 'Answer', text: 'Static QR codes cannot be updated. You\'ll need to generate a new code. For changeable meetings, consider our Dynamic QR Codes.', }, }, { '@type': 'Question', name: 'Does it work on all devices?', acceptedAnswer: { '@type': 'Answer', text: 'Yes. The QR code works on iOS, Android, and can also open Zoom on desktop computers if the Zoom app is installed.', }, }, ], }, ], }; export default function ZoomQRCodePage() { return ( <>