import React from 'react'; import type { Metadata } from 'next'; import GoogleReviewGenerator from './GoogleReviewGenerator'; import { Star, MapPin, Search, Share2 } from 'lucide-react'; import { QRCodeSVG } from 'qrcode.react'; import { ToolBreadcrumb } from '@/components/seo/BreadcrumbSchema'; import { RelatedTools } from '@/components/marketing/RelatedTools'; import { GrowthLinksSection } from '@/components/marketing/GrowthLinksSection'; import { generateSoftwareAppSchema } from '@/lib/schema-utils'; export const metadata: Metadata = { title: { absolute: 'Google Review QR Code Generator — Free | QR Master', }, description: 'Create a QR code for your Google Reviews in seconds. Customers scan once and land directly on your review form. Free, no signup required.', keywords: ['qr code for google reviews', 'qr code generator for google reviews', 'google review qr code', 'google maps review qr code', 'get more google reviews'], alternates: { canonical: 'https://www.qrmaster.net/tools/google-review-qr-code', }, openGraph: { title: 'Google Review QR Code Generator — Free | QR Master', description: 'Create a QR code that takes customers directly to your Google review form. More reviews, less friction.', type: 'website', url: 'https://www.qrmaster.net/tools/google-review-qr-code', }, twitter: { card: 'summary_large_image', title: 'Google Review QR Code Generator — Free', description: 'Create a QR code that takes customers directly to your Google review form.', }, robots: { index: true, follow: true, }, }; const jsonLd = { '@context': 'https://schema.org', '@graph': [ generateSoftwareAppSchema( 'Google Review QR Code Generator', 'Generate a QR code that links directly to your Google review form. Customers scan once and can leave a review immediately.', '/og-image.png' ), { '@type': 'HowTo', name: 'How to Create a Google Review QR Code', description: 'Generate a QR code that sends customers directly to your Google review form.', step: [ { '@type': 'HowToStep', position: 1, name: 'Find your Google Review link', text: 'Open Google Maps, search for your business, click Share → Copy link. Or use Google Business Profile → Get more reviews.', }, { '@type': 'HowToStep', position: 2, name: 'Paste the link into the generator', text: 'Paste your Google review URL into the field above. The generator accepts g.page, google.com, and maps.app.goo.gl links.', }, { '@type': 'HowToStep', position: 3, name: 'Customize and download', text: 'Choose a color and frame label (e.g. "Leave a Review"), then download as PNG or SVG.', }, { '@type': 'HowToStep', position: 4, name: 'Display the QR code', text: 'Print the code on receipts, table cards, packaging, or your window. Customers scan once to review.', }, ], totalTime: 'PT60S', }, { '@type': 'FAQPage', mainEntity: [ { '@type': 'Question', name: 'How do I find my Google Review link?', acceptedAnswer: { '@type': 'Answer', text: 'Open Google Maps → search for your business → click Share → Copy link. Alternatively, go to your Google Business Profile dashboard → click "Get more reviews" — this gives you a direct review shortlink.', }, }, { '@type': 'Question', name: 'Does this Google Review QR code expire?', acceptedAnswer: { '@type': 'Answer', text: 'No. This is a static QR code that directly encodes your Google review URL. It will work as long as your Google Business Profile is active.', }, }, { '@type': 'Question', name: 'Can I track how many people scanned the QR code?', acceptedAnswer: { '@type': 'Answer', text: 'Not with a static QR code. If you need scan analytics (device, location, time), create a dynamic QR code with tracking through QR Master.', }, }, { '@type': 'Question', name: 'What happens when a customer scans the QR code?', acceptedAnswer: { '@type': 'Answer', text: 'They are taken directly to your Google review form. If they are logged into a Google account on their phone, they can leave a review immediately with no extra steps.', }, }, { '@type': 'Question', name: 'Where should I display the Google Review QR code?', acceptedAnswer: { '@type': 'Answer', text: 'Best placements: receipts, table tent cards (restaurants), checkout counters, packaging inserts, and your shop window. The moment after a positive experience is the best time to ask for a review.', }, }, ], }, { '@type': 'BreadcrumbList', itemListElement: [ { '@type': 'ListItem', position: 1, name: 'Home', item: 'https://www.qrmaster.net' }, { '@type': 'ListItem', position: 2, name: 'QR Code Tools', item: 'https://www.qrmaster.net/tools' }, { '@type': 'ListItem', position: 3, name: 'Google Review QR Code Generator', item: 'https://www.qrmaster.net/tools/google-review-qr-code' }, ], }, ], }; export default function GoogleReviewQRCodePage() { return ( <>