import type { Metadata } from 'next'; import { buildUseCaseMetadata, UseCasePageTemplate, } from '@/components/marketing/UseCasePageTemplate'; import { GrowthLinksSection } from '@/components/marketing/GrowthLinksSection'; export const metadata: Metadata = buildUseCaseMetadata({ title: 'QR Code Analytics: Measure Offline Campaigns', description: 'Use QR code analytics to interpret scan data, compare placements, measure offline campaigns, and decide what to update or reprint next.', canonicalPath: '/qr-code-analytics', }); const softwareSchema = { '@context': 'https://schema.org', '@type': 'SoftwareApplication', '@id': 'https://www.qrmaster.net/qr-code-analytics#software', name: 'QR Master - QR Code Analytics', applicationCategory: 'BusinessApplication', operatingSystem: 'Web Browser', offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD', availability: 'https://schema.org/InStock', }, description: 'QR analytics software for measuring scans by placement, timing, device context, and offline campaign routing.', featureList: [ 'Placement-level scan reporting', 'Device and timing context', 'Offline-to-online campaign attribution', 'Scan visibility across print workflows', 'Destination updates without reprinting', ], }; export default function QRCodeAnalyticsPage() { return ( <> ); }