Copy overhaul + qr designs

This commit is contained in:
2026-07-27 17:54:59 +02:00
parent 033bc7e29d
commit 70d97aa970
144 changed files with 23107 additions and 1699 deletions

View File

@@ -130,7 +130,7 @@ export default function AppLayout({
},
{
name: t('nav.pricing'),
href: '/pricing',
href: '/upgrade',
icon: (
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
@@ -164,11 +164,11 @@ export default function AppLayout({
className={`fixed top-0 left-0 z-50 h-full w-64 bg-white border-r border-gray-200 transform transition-transform lg:translate-x-0 ${sidebarOpen ? 'translate-x-0' : '-translate-x-full'
}`}
>
<div className="flex items-center justify-between p-4 border-b border-gray-200">
<Link href="/" className="flex items-center space-x-2">
<img src="/favicon1.png" alt="QR Master" className="w-16 h-16 rounded-full object-cover" />
<span className="text-xl font-bold text-gray-900">QR Master</span>
</Link>
<div className="flex items-center justify-between p-4 border-b border-gray-200">
<Link href="/" className="flex items-center space-x-2">
<img src="/logo.svg" alt="QR Master" className="w-16 h-16 rounded-full object-cover" />
<span className="text-xl font-bold text-gray-900">QR Master</span>
</Link>
<button
className="lg:hidden"
onClick={() => setSidebarOpen(false)}
@@ -200,10 +200,10 @@ export default function AppLayout({
</aside>
{/* Main content */}
<div className="lg:ml-64">
{/* Top bar */}
<header className="bg-white border-b border-gray-200">
<div className="flex items-center justify-between px-4 py-3">
<div className="lg:ml-64">
{/* Top bar */}
<header className="bg-white border-b border-gray-200">
<div className="flex items-center justify-between px-4 py-3">
<button
className="lg:hidden"
onClick={() => setSidebarOpen(true)}
@@ -213,24 +213,24 @@ export default function AppLayout({
</svg>
</button>
<div className="flex items-center space-x-4 ml-auto">
{/* User Menu */}
<Dropdown
align="right"
trigger={
<button className="flex items-center space-x-2 text-gray-700 hover:text-gray-900">
<div className="w-8 h-8 bg-primary-100 rounded-full flex items-center justify-center">
<span className="text-sm font-medium text-primary-600">
{getUserInitials()}
</span>
</div>
<span className="hidden md:block font-medium">
{getDisplayName()}
</span>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
</svg>
</button>
<div className="flex items-center space-x-4 ml-auto">
{/* User Menu */}
<Dropdown
align="right"
trigger={
<button className="flex items-center space-x-2 text-gray-700 hover:text-gray-900">
<div className="w-8 h-8 bg-primary-100 rounded-full flex items-center justify-center">
<span className="text-sm font-medium text-primary-600">
{getUserInitials()}
</span>
</div>
<span className="hidden md:block font-medium">
{getDisplayName()}
</span>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
</svg>
</button>
}
>
<DropdownItem onClick={handleSignOut}>
@@ -242,13 +242,13 @@ export default function AppLayout({
</header>
{/* Page content */}
<main className="p-6">
{children}
</main>
<main className="p-6">
{children}
</main>
{/* Footer */}
<Footer variant="dashboard" />
</div>
</div>
);
}
}

View File

@@ -1,6 +1,7 @@
'use client';
import React, { useState, useCallback } from 'react';
import Link from 'next/link';
import { useDropzone } from 'react-dropzone';
import Papa from 'papaparse';
import ExcelJS from 'exceljs';
@@ -8,7 +9,8 @@ import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card';
import { Button } from '@/components/ui/Button';
import { Badge } from '@/components/ui/Badge';
import { Select } from '@/components/ui/Select';
import { QRCodeSVG } from 'qrcode.react';
import { QRCodeSVG } from 'qrcode.react';
import { renderStyledQRSvg } from '@/lib/render-qr-svg';
import { showToast } from '@/components/ui/Toast';
import { useTranslation } from '@/hooks/useTranslation';
import { useCsrf } from '@/hooks/useCsrf';
@@ -39,6 +41,38 @@ export default function BulkCreationPage() {
const [userPlan, setUserPlan] = useState<string>('FREE');
const [isDynamic, setIsDynamic] = useState(false);
const [remainingDynamic, setRemainingDynamic] = useState(0);
// Rows the API refused. Previously these vanished silently and the success
// toast reported a smaller number with no explanation - the worst kind of
// failure for someone who is about to send a batch to print.
const [failedRows, setFailedRows] = useState<{ row: number; title: string; reason: string }[]>([]);
// A saved design applied to the whole batch. This is the reason presets exist:
// 500 codes that all look like the same client, from one upload.
const [presets, setPresets] = useState<{ id: string; name: string; style: any }[]>([]);
const [presetId, setPresetId] = useState('');
// Reload the remaining dynamic quota from the server. Counting down locally
// drifts as soon as anything is created in another tab, which is how rows
// ended up being refused mid-batch in the first place.
const refreshQuota = async () => {
try {
const statsRes = await fetch('/api/user/stats');
if (statsRes.ok) {
const stats = await statsRes.json();
setRemainingDynamic((stats.dynamicLimit || 0) - (stats.dynamicUsed || 0));
}
} catch (error) {
console.error('Error refreshing quota:', error);
}
};
React.useEffect(() => {
fetch('/api/design-presets')
.then((r) => (r.ok ? r.json() : []))
.then((d) => Array.isArray(d) && setPresets(d))
.catch(() => {});
}, []);
const activeStyle = () => presets.find((p) => p.id === presetId)?.style ?? null;
// Check user plan and dynamic quota on mount
React.useEffect(() => {
@@ -177,15 +211,15 @@ export default function BulkCreationPage() {
// Use qrcode library to generate SVG
const QRCode = require('qrcode');
const qrSvg = await QRCode.toString(content, {
type: 'svg',
width: 300,
margin: 2,
color: {
dark: '#000000',
light: '#FFFFFF',
},
});
const style = activeStyle();
const qrSvg = style
? renderStyledQRSvg(String(content), style, 300)
: await QRCode.toString(content, {
type: 'svg',
width: 300,
margin: 2,
color: { dark: '#000000', light: '#FFFFFF' },
});
qrCodes.push({
title: String(title),
@@ -212,20 +246,35 @@ export default function BulkCreationPage() {
const toProcess = remainingDynamic > 0 ? data.slice(0, remainingDynamic) : [];
if (toProcess.length === 0) {
showToast('Du hast keine dynamischen QR-Codes mehr übrig. Bitte upgrade deinen Plan.', 'error');
showToast('No dynamic QR codes left on your plan. Free a slot or upgrade to continue.', 'error');
setLoading(false);
return;
}
if (data.length > remainingDynamic) {
showToast(`Nur ${remainingDynamic} dynamische Codes verfügbar. Es werden nur die ersten ${remainingDynamic} Zeilen verarbeitet.`, 'warning');
showToast(
`Only ${remainingDynamic} dynamic codes left. The first ${remainingDynamic} rows will be processed - the rest are listed after the run.`,
'warning'
);
}
try {
const QRCode = require('qrcode');
const results: GeneratedQR[] = [];
const failures: { row: number; title: string; reason: string }[] = [];
for (const row of toProcess) {
// Rows the plan could not cover are counted from the start, so the summary
// reflects the whole upload and not just the slice we attempted.
data.slice(toProcess.length).forEach((row, i) => {
failures.push({
row: toProcess.length + i + 1,
title: String(row[mapping.title as keyof typeof row] || 'Untitled'),
reason: 'No dynamic code slots left on your plan',
});
});
for (let i = 0; i < toProcess.length; i++) {
const row = toProcess[i];
const title = String(row[mapping.title as keyof typeof row] || 'Untitled');
const url = String(row[mapping.content as keyof typeof row] || 'https://example.com');
@@ -242,23 +291,61 @@ export default function BulkCreationPage() {
if (res.ok) {
const qr = await res.json();
const redirectUrl = `${window.location.origin}/r/${qr.slug}`;
const svg = await QRCode.toString(redirectUrl, { type: 'svg', width: 300, margin: 2 });
const style = activeStyle();
const svg = style
? renderStyledQRSvg(redirectUrl, style, 300)
: await QRCode.toString(redirectUrl, { type: 'svg', width: 300, margin: 2 });
results.push({ title, content: url, svg, slug: qr.slug, redirectUrl });
} else {
const err = await res.json().catch(() => null);
failures.push({
row: i + 1,
title,
reason: err?.error === 'Limit reached'
? 'No dynamic code slots left on your plan'
: err?.error || `Request failed (${res.status})`,
});
}
}
setGeneratedQRs(results);
setRemainingDynamic(prev => Math.max(0, prev - results.length));
setFailedRows(failures);
await refreshQuota();
setStep('complete');
showToast(`${results.length} dynamische QR-Codes erstellt!`, 'success');
if (failures.length > 0) {
showToast(
`${results.length} of ${data.length} codes created. ${failures.length} row${failures.length === 1 ? '' : 's'} could not be added - see the list below.`,
'warning'
);
} else {
showToast(`${results.length} dynamic QR codes created.`, 'success');
}
} catch (error) {
console.error('Dynamic QR generation error:', error);
showToast('Fehler beim Erstellen der dynamischen QR-Codes', 'error');
showToast('Something went wrong while creating the dynamic QR codes.', 'error');
} finally {
setLoading(false);
}
};
// Hands the user back exactly the rows that did not make it, in a format they
// can re-upload once they have room. Telling someone what is missing without
// giving them the list is only half an apology.
const downloadFailedRowsCsv = () => {
const header = 'row,title,reason\n';
const body = failedRows
.map(f => `${f.row},"${f.title.replace(/"/g, '""')}","${f.reason.replace(/"/g, '""')}"`)
.join('\n');
const blob = new Blob([header + body], { type: 'text/csv;charset=utf-8;' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'qrmaster-missing-rows.csv';
a.click();
URL.revokeObjectURL(url);
};
const downloadAllQRCodes = async () => {
const zip = new JSZip();
@@ -370,7 +457,7 @@ export default function BulkCreationPage() {
<Button variant="outline" onClick={() => window.location.href = '/dashboard'}>
Back to Dashboard
</Button>
<Button onClick={() => window.location.href = '/pricing'}>
<Button onClick={() => window.location.href = '/upgrade?reason=bulk&from=/bulk-creation'}>
Upgrade to Business
</Button>
</div>
@@ -386,6 +473,26 @@ export default function BulkCreationPage() {
<h1 className="text-3xl font-bold text-gray-900">{t('bulk.title')}</h1>
<p className="text-gray-600 mt-2">{t('bulk.subtitle')}</p>
{/* Apply a saved design to the whole batch. */}
{presets.length > 0 && (
<div className="mt-4 rounded-xl border border-gray-200 bg-gray-50 p-4">
<label className="mb-2 block text-sm font-medium text-gray-700">
Design preset
</label>
<Select
value={presetId}
onChange={(e) => setPresetId(e.target.value)}
options={[
{ value: '', label: 'Plain black and white' },
...presets.map((p) => ({ value: p.id, label: p.name })),
]}
/>
<p className="mt-2 text-xs text-gray-500">
Applied to every code in this upload, so the whole batch matches.
</p>
</div>
)}
{/* Static / Dynamic Toggle */}
<div className="mt-4 flex items-center gap-4 p-4 bg-gray-50 rounded-xl border border-gray-200">
<span className="text-sm font-medium text-gray-700">QR Code Type:</span>
@@ -772,11 +879,54 @@ export default function BulkCreationPage() {
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M5 13l4 4L19 7" />
</svg>
</div>
<h2 className="text-2xl font-bold text-gray-900 mb-2">Generation Complete!</h2>
<h2 className="text-2xl font-bold text-gray-900 mb-2">
{failedRows.length > 0
? `${generatedQRs.length} of ${generatedQRs.length + failedRows.length} codes created`
: 'Generation complete'}
</h2>
<p className="text-gray-600 mb-8">
Successfully generated {generatedQRs.length} static QR codes
{failedRows.length > 0
? 'The rows below could not be added. Nothing was silently dropped - here is exactly what is missing.'
: `${generatedQRs.length} ${isDynamic ? 'dynamic' : 'static'} QR codes, ready to download.`}
</p>
{failedRows.length > 0 && (
<div className="mx-auto mb-8 max-w-3xl rounded-lg border border-amber-200 bg-amber-50 text-left">
<div className="border-b border-amber-200 px-5 py-3">
<p className="text-sm font-semibold text-amber-900">
{failedRows.length} row{failedRows.length === 1 ? '' : 's'} not created
</p>
<p className="mt-1 text-sm text-amber-800">
Check these before you send anything to print.
</p>
</div>
<ul className="max-h-64 divide-y divide-amber-100 overflow-y-auto">
{failedRows.slice(0, 50).map((f) => (
<li key={`${f.row}-${f.title}`} className="flex items-start justify-between gap-4 px-5 py-2.5">
<span className="text-sm text-amber-900">
<span className="font-mono text-xs text-amber-700">Row {f.row}</span>{' '}
{f.title}
</span>
<span className="shrink-0 text-xs text-amber-700">{f.reason}</span>
</li>
))}
</ul>
{failedRows.length > 50 && (
<p className="px-5 py-2 text-xs text-amber-700">
and {failedRows.length - 50} more - download the list to see all of them.
</p>
)}
<div className="flex flex-wrap gap-3 border-t border-amber-200 px-5 py-3">
<Button variant="outline" size="sm" onClick={downloadFailedRowsCsv}>
Download missing rows as CSV
</Button>
<Link href="/upgrade?reason=limit&from=/bulk-creation">
<Button variant="primary" size="sm">Raise my limit</Button>
</Link>
</div>
</div>
)}
<div className="mb-8">
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8 max-w-6xl mx-auto">
{generatedQRs.slice(0, 8).map((qr, index) => (

File diff suppressed because it is too large Load Diff

View File

@@ -7,15 +7,15 @@ import { StatsGrid } from '@/components/dashboard/StatsGrid';
import { QRCodeCard } from '@/components/dashboard/QRCodeCard';
import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card';
import { Button } from '@/components/ui/Button';
import { Badge } from '@/components/ui/Badge';
import { useTranslation } from '@/hooks/useTranslation';
import { useCsrf } from '@/hooks/useCsrf';
import { showToast } from '@/components/ui/Toast';
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter } from '@/components/ui/Dialog';
import { QrCode } from 'lucide-react';
import { trackEvent, identifyUser } from '@/components/PostHogProvider';
import { FREE_DYNAMIC_QR_LIMIT } from '@/lib/plans';
import { OnboardingChecklist } from '@/components/dashboard/OnboardingChecklist';
import { Badge } from '@/components/ui/Badge';
import { useTranslation } from '@/hooks/useTranslation';
import { useCsrf } from '@/hooks/useCsrf';
import { showToast } from '@/components/ui/Toast';
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter } from '@/components/ui/Dialog';
import { QrCode } from 'lucide-react';
import { trackEvent, identifyUser } from '@/components/PostHogProvider';
import { FREE_DYNAMIC_QR_LIMIT } from '@/lib/plans';
import { OnboardingChecklist } from '@/components/dashboard/OnboardingChecklist';
interface QRCodeData {
id: string;
@@ -47,8 +47,8 @@ export default function DashboardPage() {
conversionRate: 0,
uniqueScans: 0,
});
const [analyticsData, setAnalyticsData] = useState<any>(null);
const [onboardingState, setOnboardingState] = useState<any>(null);
const [analyticsData, setAnalyticsData] = useState<any>(null);
const [onboardingState, setOnboardingState] = useState<any>(null);
const blogPosts = [
@@ -121,11 +121,11 @@ export default function DashboardPage() {
// Store in localStorage for consistency
localStorage.setItem('user', JSON.stringify(user));
identifyUser(user.id, {
email: user.email,
name: user.name,
plan: user.plan || 'FREE',
provider: 'google',
identifyUser(user.id, {
email: user.email,
name: user.name,
plan: user.plan || 'FREE',
provider: 'google',
});
trackEvent(isNewUser ? 'user_signup' : 'user_login', {
@@ -146,35 +146,35 @@ export default function DashboardPage() {
}, [searchParams, router]);
// Check for successful payment and verify session
useEffect(() => {
const success = searchParams.get('success');
const sessionId = searchParams.get('session_id');
if (success === 'true' && sessionId) {
const verifySession = async () => {
try {
const response = await fetch('/api/stripe/verify-session', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ sessionId }),
});
if (response.ok) {
const data = await response.json();
setUserPlan(data.plan);
setUpgradedPlan(data.plan);
setShowUpgradeDialog(true);
trackEvent('upgrade_completed', {
plan: data.plan,
source: 'stripe_checkout',
});
// Remove success parameter from URL
router.replace('/dashboard');
} else {
console.error('Failed to verify session:', await response.text());
}
useEffect(() => {
const success = searchParams.get('success');
const sessionId = searchParams.get('session_id');
if (success === 'true' && sessionId) {
const verifySession = async () => {
try {
const response = await fetch('/api/stripe/verify-session', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ sessionId }),
});
if (response.ok) {
const data = await response.json();
setUserPlan(data.plan);
setUpgradedPlan(data.plan);
setShowUpgradeDialog(true);
trackEvent('upgrade_completed', {
plan: data.plan,
source: 'stripe_checkout',
});
// Remove success parameter from URL
router.replace('/dashboard');
} else {
console.error('Failed to verify session:', await response.text());
}
} catch (error) {
console.error('Error verifying session:', error);
}
@@ -225,19 +225,19 @@ export default function DashboardPage() {
setUserPlan(userData.plan || 'FREE');
}
// Fetch analytics data for trends (last 30 days = month comparison)
const analyticsResponse = await fetch('/api/analytics/summary?range=30');
if (analyticsResponse.ok) {
const analytics = await analyticsResponse.json();
setAnalyticsData(analytics);
}
const onboardingResponse = await fetch('/api/onboarding');
if (onboardingResponse.ok) {
const onboardingData = await onboardingResponse.json();
setOnboardingState(onboardingData);
}
} catch (error) {
// Fetch analytics data for trends (last 30 days = month comparison)
const analyticsResponse = await fetch('/api/analytics/summary?range=30');
if (analyticsResponse.ok) {
const analytics = await analyticsResponse.json();
setAnalyticsData(analytics);
}
const onboardingResponse = await fetch('/api/onboarding');
if (onboardingResponse.ok) {
const onboardingData = await onboardingResponse.json();
setOnboardingState(onboardingData);
}
} catch (error) {
console.error('Error fetching data:', error);
setQrCodes([]);
setStats({
@@ -320,35 +320,35 @@ export default function DashboardPage() {
}
};
return (
<div className="space-y-6">
return (
<div className="space-y-6">
{/* Header with Plan Badge */}
<div className="flex flex-col gap-4 lg:flex-row lg:items-start lg:justify-between">
<div className="min-w-0">
<div className="flex flex-col gap-4 lg:flex-row lg:items-start lg:justify-between">
<div className="min-w-0">
<h1 className="text-3xl font-bold text-gray-900">{t('dashboard.title')}</h1>
<p className="text-gray-600 mt-2">
{!loading && qrCodes.length === 0
? 'Start here create your first QR code in under 2 minutes'
? 'Start here - create your first QR code in under 2 minutes'
: t('dashboard.subtitle')}
</p>
</div>
<div className="flex flex-wrap items-center gap-3">
<Badge className="border border-slate-200 bg-white px-4 py-2 text-sm font-semibold text-slate-700">
{userPlan} Plan
</Badge>
{userPlan === 'FREE' && (
<Link href="/pricing">
<Button className="bg-primary-600 text-white hover:bg-primary-700">Upgrade</Button>
</Link>
)}
</div>
</div>
<div className="flex flex-wrap items-center gap-3">
<Badge className="border border-slate-200 bg-white px-4 py-2 text-sm font-semibold text-slate-700">
{userPlan} Plan
</Badge>
{userPlan === 'FREE' && (
<Link href="/upgrade?from=/dashboard">
<Button className="bg-primary-600 text-white hover:bg-primary-700">Upgrade</Button>
</Link>
)}
</div>
</div>
{/* Stats Grid */}
<OnboardingChecklist state={onboardingState} />
<StatsGrid
stats={stats}
{/* Stats Grid */}
<OnboardingChecklist state={onboardingState} />
<StatsGrid
stats={stats}
trends={{
totalScans: analyticsData?.summary.scansTrend,
comparisonPeriod: analyticsData?.summary.comparisonPeriod || 'month'
@@ -357,9 +357,9 @@ export default function DashboardPage() {
{/* Recent QR Codes */}
<div>
<div className="mb-6 flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between">
<h2 className="text-xl font-semibold text-gray-900">{t('dashboard.recent_codes')}</h2>
<div className="flex flex-wrap gap-3">
<div className="mb-6 flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between">
<h2 className="text-xl font-semibold text-gray-900">{t('dashboard.recent_codes')}</h2>
<div className="flex flex-wrap gap-3">
{qrCodes.length > 0 && (
<Button
variant="outline"
@@ -369,12 +369,12 @@ export default function DashboardPage() {
>
{deletingAll ? 'Deleting...' : 'Delete All'}
</Button>
)}
<Link href="/create">
<Button className="bg-primary-600 text-white hover:bg-primary-700">Create New QR Code</Button>
</Link>
</div>
</div>
)}
<Link href="/create">
<Button className="bg-primary-600 text-white hover:bg-primary-700">Create New QR Code</Button>
</Link>
</div>
</div>
{loading ? (
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
@@ -394,14 +394,14 @@ export default function DashboardPage() {
))}
</div>
) : qrCodes.length === 0 ? (
<div className="rounded-[24px] border border-dashed border-gray-200 py-16 text-center">
<div className="rounded-[24px] border border-dashed border-gray-200 py-16 text-center">
<QrCode className="w-12 h-12 text-gray-300 mx-auto mb-4" />
<h3 className="text-lg font-semibold text-gray-700 mb-2">Create your first QR code</h3>
<p className="text-gray-500 mb-6 max-w-sm mx-auto">
You have {FREE_DYNAMIC_QR_LIMIT} free dynamic QR codes. They redirect wherever you want and track every scan.
</p>
You have {FREE_DYNAMIC_QR_LIMIT} free dynamic QR codes. They redirect wherever you want and track every scan.
</p>
<Link href="/create">
<Button className="bg-primary-600 text-white hover:bg-primary-700">Create QR Code it takes 90 seconds</Button>
<Button className="bg-primary-600 text-white hover:bg-primary-700">Create QR Code - it takes 90 seconds</Button>
</Link>
</div>
) : (
@@ -470,7 +470,7 @@ export default function DashboardPage() {
</li>
<li className="flex items-start">
<span className="text-green-600 mr-2"></span>
<span>Custom Branding (Colors & Logo)</span>
<span>4 Module Shapes, Eye Styles &amp; Your Logo</span>
</li>
<li className="flex items-start">
<span className="text-green-600 mr-2"></span>
@@ -526,4 +526,4 @@ export default function DashboardPage() {
</Dialog>
</div>
);
}
}

View File

@@ -8,13 +8,14 @@ export const metadata: Metadata = {
title: 'Dashboard | QR Master',
description: 'Manage your QR Master dashboard. Create dynamic QR codes, view real-time scan analytics, and configure your account settings in one secure place.',
robots: { index: false, follow: false },
icons: {
icon: [
{ url: '/favicon1.png', sizes: '512x512', type: 'image/png' },
],
shortcut: '/favicon1.png',
apple: '/favicon1.png',
},
icons: {
icon: [
{ url: '/favicon.svg', type: 'image/svg+xml' },
{ url: '/favicon.ico', sizes: '16x16 32x32', type: 'image/x-icon' },
],
shortcut: '/favicon.ico',
apple: '/logo.svg',
},
};
export default function AppGroupLayout({

View File

@@ -3,13 +3,14 @@
import React, { useState, useEffect } from 'react';
import { useParams, useRouter } from 'next/navigation';
import Link from 'next/link';
import { QRCodeSVG } from 'qrcode.react';
import StyledQRCode from '@/components/generator/StyledQRCode';
import { renderStyledQRSvg } from '@/lib/render-qr-svg';
import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card';
import { Button } from '@/components/ui/Button';
import { Badge } from '@/components/ui/Badge';
import {
ArrowLeft, Edit, ExternalLink, Star, MessageSquare,
BarChart3, Copy, Check, Pause, Play
BarChart3, Copy, Check, Pause, Play, Download
} from 'lucide-react';
import { showToast } from '@/components/ui/Toast';
import { useCsrf } from '@/hooks/useCsrf';
@@ -82,6 +83,55 @@ export default function QRDetailPage() {
showToast('Link copied!', 'success');
};
// Download straight from the dashboard. Previously the only way to get a
// file back out was to rebuild the code in /create, which also meant the
// design had to be recreated from memory.
const downloadQR = (format: 'svg' | 'png') => {
if (!qrCode) return;
const url = `${window.location.origin}/r/${qrCode.slug}`;
const style = {
foregroundColor: qrCode.style?.foregroundColor,
backgroundColor: qrCode.style?.backgroundColor,
moduleShape: qrCode.style?.moduleShape,
eyeFrameShape: qrCode.style?.eyeFrameShape,
eyeBallShape: qrCode.style?.eyeBallShape,
gradientMode: qrCode.style?.gradientMode,
gradientTo: qrCode.style?.gradientTo,
logoUrl: qrCode.style?.imageSettings?.src,
logoSize: qrCode.style?.imageSettings?.width,
};
// 1024px so the PNG is usable in print without a second export step.
const svg = renderStyledQRSvg(url, style, format === 'png' ? 1024 : 512);
const safeName = (qrCode.title || 'qr-code').replace(/[^a-z0-9]+/gi, '-').toLowerCase();
if (format === 'svg') {
const blob = new Blob([svg], { type: 'image/svg+xml' });
const href = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = href;
a.download = `${safeName}.svg`;
a.click();
URL.revokeObjectURL(href);
return;
}
const img = new Image();
img.onload = () => {
const canvas = document.createElement('canvas');
canvas.width = 1024;
canvas.height = 1024;
const ctx = canvas.getContext('2d');
if (!ctx) return;
ctx.drawImage(img, 0, 0, 1024, 1024);
const a = document.createElement('a');
a.href = canvas.toDataURL('image/png');
a.download = `${safeName}.png`;
a.click();
};
img.onerror = () => showToast('Could not render the PNG. Try the SVG instead.', 'error');
img.src = 'data:image/svg+xml;base64,' + btoa(unescape(encodeURIComponent(svg)));
};
const toggleStatus = async () => {
if (!qrCode) return;
const newStatus = qrCode.status === 'ACTIVE' ? 'PAUSED' : 'ACTIVE';
@@ -169,11 +219,32 @@ export default function QRDetailPage() {
<Card>
<CardContent className="p-6 flex flex-col items-center">
<div className="bg-white p-4 rounded-xl shadow-sm mb-4">
<QRCodeSVG
{/* Renders from the saved style, so the code
here looks like the one that was designed -
shapes, gradient and logo included. It
previously drew a plain black grid and
ignored everything but the two colours. */}
<StyledQRCode
value={qrUrl}
size={200}
fgColor={qrCode.style?.foregroundColor || '#000000'}
bgColor={qrCode.style?.backgroundColor || '#FFFFFF'}
moduleShape={qrCode.style?.moduleShape || 'square'}
eyeFrameShape={qrCode.style?.eyeFrameShape || 'square'}
eyeBallShape={qrCode.style?.eyeBallShape || 'square'}
gradient={
qrCode.style?.gradientMode && qrCode.style.gradientMode !== 'none'
? {
type: qrCode.style.gradientMode,
from: qrCode.style.foregroundColor || '#000000',
to: qrCode.style.gradientTo || '#000000',
}
: null
}
errorCorrection="H"
logoUrl={qrCode.style?.imageSettings?.src}
logoScale={(qrCode.style?.imageSettings?.width ?? 24) / 200}
margin={0}
/>
</div>
@@ -187,6 +258,14 @@ export default function QRDetailPage() {
<ExternalLink className="w-4 h-4 mr-2" /> Open Link
</Button>
</a>
<div className="grid grid-cols-2 gap-2">
<Button variant="outline" onClick={() => downloadQR('png')}>
<Download className="w-4 h-4 mr-2" /> PNG
</Button>
<Button variant="outline" onClick={() => downloadQR('svg')}>
<Download className="w-4 h-4 mr-2" /> SVG
</Button>
</div>
</div>
</CardContent>
</Card>

View File

@@ -356,7 +356,7 @@ export default function SettingsPage() {
<Button
variant="outline"
className="w-full"
onClick={() => window.location.href = '/pricing'}
onClick={() => window.location.href = '/upgrade?from=/settings'}
>
Manage Subscription
</Button>
@@ -365,7 +365,7 @@ export default function SettingsPage() {
{plan === 'FREE' && (
<div className="pt-4 border-t">
<Button variant="primary" className="w-full" onClick={() => window.location.href = '/pricing'}>
<Button variant="primary" className="w-full" onClick={() => window.location.href = '/upgrade?reason=limit&from=/settings'}>
Upgrade Plan
</Button>
</div>

View File

@@ -0,0 +1,227 @@
'use client';
import React, { useEffect, useState } from 'react';
import { useSearchParams } from 'next/navigation';
import { Card, CardContent } from '@/components/ui/Card';
import { Button } from '@/components/ui/Button';
import { Badge } from '@/components/ui/Badge';
import { showToast } from '@/components/ui/Toast';
import { trackEvent } from '@/components/PostHogProvider';
import { Check, Loader2 } from 'lucide-react';
import {
FREE_DYNAMIC_QR_LIMIT,
PRO_DYNAMIC_QR_LIMIT,
BUSINESS_DYNAMIC_QR_LIMIT,
} from '@/lib/plans';
type PlanKey = 'FREE' | 'PRO' | 'BUSINESS';
/**
* In-app upgrade page.
*
* /pricing lives in the (marketing) route group, so every upgrade link inside
* the app dropped the user out of the product shell and into the public site.
* This page sits in the (app) group, keeps the sidebar, and returns the user to
* where they came from after checkout.
*
* Copy note: the plan captions describe the moment each plan stops being enough,
* not a feature count. Someone on this page already knows what the product does
* - what they are deciding is whether they have crossed a line yet.
*/
const PLANS: {
key: PlanKey;
name: string;
price: string;
period: string;
caption: string;
features: string[];
popular?: boolean;
}[] = [
{
key: 'FREE',
name: 'Free',
price: '€0',
period: 'forever',
caption: 'Enough to prove the idea on one or two placements.',
features: [
`${FREE_DYNAMIC_QR_LIMIT} active dynamic QR codes`,
'Unlimited static codes that never expire',
'Basic scan tracking',
'Your colors, foreground and background',
'SVG and PNG download',
],
},
{
key: 'PRO',
name: 'Pro',
price: '€9',
period: 'per month',
popular: true,
caption: 'When one campaign is no longer the only campaign.',
features: [
`${PRO_DYNAMIC_QR_LIMIT} dynamic QR codes`,
'Scan data by device, location and time',
'4 module shapes and custom eye styles',
'Your logo in the centre of the code',
'Everything in Free',
],
},
{
key: 'BUSINESS',
name: 'Business',
price: '€29',
period: 'per month',
caption: 'When codes are produced in batches, not one at a time.',
features: [
`${BUSINESS_DYNAMIC_QR_LIMIT} dynamic QR codes`,
'Bulk creation: 1,000 static or 500 dynamic per upload',
'Full designer: 11 module shapes and colour gradients',
'Saved design presets, applied to a whole bulk upload',
'Priority email support',
'Everything in Pro',
],
},
];
const REASON_HEADLINES: Record<string, string> = {
limit: 'You are out of dynamic code slots.',
shapes: 'Module shapes start on Pro.',
logo: 'Your logo belongs inside the code.',
bulk: 'Bulk creation is a Business feature.',
analytics: 'You are seeing totals, not sources.',
};
export default function UpgradePage() {
const searchParams = useSearchParams();
const [currentPlan, setCurrentPlan] = useState<PlanKey>('FREE');
const [loadingPlan, setLoadingPlan] = useState<PlanKey | null>(null);
const reason = searchParams.get('reason');
const returnTo = searchParams.get('from');
useEffect(() => {
fetch('/api/user/plan')
.then((r) => (r.ok ? r.json() : null))
.then((d) => d?.plan && setCurrentPlan(d.plan))
.catch(() => {});
}, []);
useEffect(() => {
if (searchParams.get('canceled') === 'true') {
showToast('Checkout canceled. Nothing was charged.', 'info');
}
}, [searchParams]);
const handleUpgrade = async (plan: PlanKey) => {
if (plan === 'FREE') return;
setLoadingPlan(plan);
trackEvent('upgrade_clicked', { plan, source: 'in_app_upgrade', reason });
try {
const res = await fetch('/api/stripe/create-checkout-session', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
plan,
billingInterval: 'month',
returnPath: returnTo && returnTo.startsWith('/') ? returnTo : '/dashboard',
}),
});
if (!res.ok) {
const data = await res.json().catch(() => null);
throw new Error(data?.error || 'Could not start checkout.');
}
const { url } = await res.json();
window.location.href = url;
} catch (err: any) {
showToast(err?.message || 'Could not start checkout. Please try again.', 'error');
setLoadingPlan(null);
}
};
return (
<div className="mx-auto max-w-6xl px-4 py-10 sm:px-6 lg:px-8">
<div className="mb-10 max-w-2xl">
<h1 className="text-3xl font-bold text-slate-900">
{reason && REASON_HEADLINES[reason]
? REASON_HEADLINES[reason]
: 'Pick the plan that matches what you are running'}
</h1>
<p className="mt-3 text-base leading-relaxed text-slate-600">
Every plan keeps your static codes working forever, and nothing you have
already printed stops resolving if you change plans. Cancel any time from
Settings.
</p>
</div>
<div className="grid gap-6 lg:grid-cols-3">
{PLANS.map((plan) => {
const isCurrent = plan.key === currentPlan;
return (
<Card
key={plan.key}
className={plan.popular ? 'border-2 border-primary-500' : undefined}
>
<CardContent className="flex h-full flex-col p-6">
<div className="mb-4 flex items-center justify-between">
<h2 className="text-xl font-semibold text-slate-900">{plan.name}</h2>
{plan.popular && <Badge variant="info">Most popular</Badge>}
{isCurrent && <Badge variant="success">Current plan</Badge>}
</div>
<div className="mb-1 flex items-baseline gap-2">
<span className="text-4xl font-bold text-slate-900">{plan.price}</span>
<span className="text-sm text-slate-500">{plan.period}</span>
</div>
<p className="mb-6 text-sm text-slate-600">{plan.caption}</p>
<ul className="mb-8 space-y-3">
{plan.features.map((f) => (
<li key={f} className="flex items-start gap-2 text-sm text-slate-700">
<Check className="mt-0.5 h-4 w-4 shrink-0 text-green-600" />
<span>{f}</span>
</li>
))}
</ul>
<div className="mt-auto">
{isCurrent ? (
<Button variant="outline" className="w-full" disabled>
Current plan
</Button>
) : plan.key === 'FREE' ? (
<Button variant="outline" className="w-full" disabled>
Included
</Button>
) : (
<Button
variant={plan.popular ? 'primary' : 'secondary'}
className="w-full"
disabled={loadingPlan !== null}
onClick={() => handleUpgrade(plan.key)}
>
{loadingPlan === plan.key ? (
<span className="flex items-center justify-center gap-2">
<Loader2 className="h-4 w-4 animate-spin" /> Opening checkout...
</span>
) : (
`Upgrade to ${plan.name}`
)}
</Button>
)}
</div>
</CardContent>
</Card>
);
})}
</div>
<p className="mt-8 text-sm text-slate-500">
Prices exclude VAT where applicable. Payments run through Stripe - QR Master
never sees your card details.
</p>
</div>
);
}

View File

@@ -44,10 +44,10 @@ export default function ForgotPasswordPage() {
<div className="min-h-screen bg-gradient-to-br from-primary-50 to-white flex items-center justify-center p-4">
<div className="w-full max-w-md">
<div className="text-center mb-8">
<Link href="/" className="inline-flex items-center space-x-2 mb-6">
<img src="/favicon1.png" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<span className="text-2xl font-bold text-gray-900">QR Master</span>
</Link>
<Link href="/" className="inline-flex items-center space-x-2 mb-6">
<img src="/logo.svg" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<span className="text-2xl font-bold text-gray-900">QR Master</span>
</Link>
<h1 className="text-3xl font-bold text-gray-900">Check Your Email</h1>
<p className="text-gray-600 mt-2">We've sent you a password reset link</p>
</div>
@@ -98,10 +98,10 @@ export default function ForgotPasswordPage() {
<div className="min-h-screen bg-gradient-to-br from-primary-50 to-white flex items-center justify-center p-4">
<div className="w-full max-w-md">
<div className="text-center mb-8">
<Link href="/" className="inline-flex items-center space-x-2 mb-6">
<img src="/favicon1.png" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<span className="text-2xl font-bold text-gray-900">QR Master</span>
</Link>
<Link href="/" className="inline-flex items-center space-x-2 mb-6">
<img src="/logo.svg" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<span className="text-2xl font-bold text-gray-900">QR Master</span>
</Link>
<h1 className="text-3xl font-bold text-gray-900">Forgot Password?</h1>
<p className="text-gray-600 mt-2">No worries, we'll send you reset instructions</p>
</div>

View File

@@ -5,10 +5,10 @@ import { useRouter, useSearchParams } from 'next/navigation';
import Link from 'next/link';
import { Card, CardContent } from '@/components/ui/Card';
import { Input } from '@/components/ui/Input';
import { Button } from '@/components/ui/Button';
import { useTranslation } from '@/hooks/useTranslation';
import { useCsrf } from '@/hooks/useCsrf';
import { appendRedirectParam, sanitizeRedirectPath } from '@/lib/auth-flow';
import { Button } from '@/components/ui/Button';
import { useTranslation } from '@/hooks/useTranslation';
import { useCsrf } from '@/hooks/useCsrf';
import { appendRedirectParam, sanitizeRedirectPath } from '@/lib/auth-flow';
type LoginClientProps = {
showPageHeading?: boolean;
@@ -21,10 +21,10 @@ export default function LoginClient({ showPageHeading = true }: LoginClientProps
const { fetchWithCsrf, loading: csrfLoading } = useCsrf();
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [loading, setLoading] = useState(false);
const [error, setError] = useState('');
const [showPassword, setShowPassword] = useState(false);
const redirectTarget = sanitizeRedirectPath(searchParams.get('redirect'));
const [loading, setLoading] = useState(false);
const [error, setError] = useState('');
const [showPassword, setShowPassword] = useState(false);
const redirectTarget = sanitizeRedirectPath(searchParams.get('redirect'));
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
@@ -59,12 +59,12 @@ export default function LoginClient({ showPageHeading = true }: LoginClientProps
console.error('PostHog tracking error:', error);
}
// Check for redirect parameter
const redirectUrl = data.needsOnboarding
? appendRedirectParam('/onboarding', redirectTarget)
: (redirectTarget || '/dashboard');
router.push(redirectUrl);
router.refresh();
// Check for redirect parameter
const redirectUrl = data.needsOnboarding
? appendRedirectParam('/onboarding', redirectTarget)
: (redirectTarget || '/dashboard');
router.push(redirectUrl);
router.refresh();
} else {
setError(data.error || 'Invalid email or password');
}
@@ -75,17 +75,17 @@ export default function LoginClient({ showPageHeading = true }: LoginClientProps
}
};
const handleGoogleSignIn = () => {
// Redirect to Google OAuth API route
window.location.href = appendRedirectParam('/api/auth/google', redirectTarget);
};
const handleGoogleSignIn = () => {
// Redirect to Google OAuth API route
window.location.href = appendRedirectParam('/api/auth/google', redirectTarget);
};
return (
<div className="min-h-screen bg-gradient-to-br from-primary-50 to-white flex items-center justify-center p-4">
<div className="w-full max-w-md">
<div className="text-center mb-8">
<Link href="/" className="inline-flex items-center space-x-2 mb-6">
<img src="/favicon1.png" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<img src="/logo.svg" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<span className="text-2xl font-bold text-gray-900">QR Master</span>
</Link>
{showPageHeading ? (
@@ -203,9 +203,9 @@ export default function LoginClient({ showPageHeading = true }: LoginClientProps
<div className="mt-6 text-center">
<p className="text-sm text-gray-600">
Don't have an account?{' '}
<Link href={appendRedirectParam('/signup', redirectTarget)} className="text-primary-600 hover:text-primary-700 font-medium">
Sign up
</Link>
<Link href={appendRedirectParam('/signup', redirectTarget)} className="text-primary-600 hover:text-primary-700 font-medium">
Sign up
</Link>
</p>
</div>
</CardContent>

View File

@@ -2,7 +2,7 @@ import type { Metadata } from 'next';
import LoginClient from './LoginClient';
export const metadata: Metadata = {
title: 'QR Master Smart QR Generator & Analytics',
title: 'QR Master - Smart QR Generator & Analytics',
description: 'Create dynamic QR codes, track scans, and scale campaigns with secure analytics. Free advanced features, bulk generation, and custom branding available.',
robots: {
index: false,
@@ -10,11 +10,11 @@ export const metadata: Metadata = {
},
};
export default function LoginPage() {
return (
<main>
<h1 className="sr-only">Login to QR Master</h1>
<LoginClient showPageHeading={false} />
</main>
);
}
export default function LoginPage() {
return (
<main>
<h1 className="sr-only">Login to QR Master</h1>
<LoginClient showPageHeading={false} />
</main>
);
}

View File

@@ -77,10 +77,10 @@ export default function ResetPasswordPage() {
<div className="min-h-screen bg-gradient-to-br from-primary-50 to-white flex items-center justify-center p-4">
<div className="w-full max-w-md">
<div className="text-center mb-8">
<Link href="/" className="inline-flex items-center space-x-2 mb-6">
<img src="/favicon1.png" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<span className="text-2xl font-bold text-gray-900">QR Master</span>
</Link>
<Link href="/" className="inline-flex items-center space-x-2 mb-6">
<img src="/logo.svg" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<span className="text-2xl font-bold text-gray-900">QR Master</span>
</Link>
<h1 className="text-3xl font-bold text-gray-900">Password Reset Successful</h1>
<p className="text-gray-600 mt-2">Your password has been updated</p>
</div>
@@ -119,10 +119,10 @@ export default function ResetPasswordPage() {
<div className="min-h-screen bg-gradient-to-br from-primary-50 to-white flex items-center justify-center p-4">
<div className="w-full max-w-md">
<div className="text-center mb-8">
<Link href="/" className="inline-flex items-center space-x-2 mb-6">
<img src="/favicon1.png" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<span className="text-2xl font-bold text-gray-900">QR Master</span>
</Link>
<Link href="/" className="inline-flex items-center space-x-2 mb-6">
<img src="/logo.svg" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<span className="text-2xl font-bold text-gray-900">QR Master</span>
</Link>
<h1 className="text-3xl font-bold text-gray-900">Reset Your Password</h1>
<p className="text-gray-600 mt-2">Enter your new password below</p>
</div>

View File

@@ -1,29 +1,29 @@
'use client';
import React, { useState } from 'react';
import { useRouter, useSearchParams } from 'next/navigation';
import Link from 'next/link';
import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card';
import { Input } from '@/components/ui/Input';
import { Button } from '@/components/ui/Button';
import { useTranslation } from '@/hooks/useTranslation';
import { useCsrf } from '@/hooks/useCsrf';
import { appendRedirectParam, sanitizeRedirectPath } from '@/lib/auth-flow';
export default function SignupClient() {
const router = useRouter();
const searchParams = useSearchParams();
const { t } = useTranslation();
const { fetchWithCsrf } = useCsrf();
import React, { useState } from 'react';
import { useRouter, useSearchParams } from 'next/navigation';
import Link from 'next/link';
import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card';
import { Input } from '@/components/ui/Input';
import { Button } from '@/components/ui/Button';
import { useTranslation } from '@/hooks/useTranslation';
import { useCsrf } from '@/hooks/useCsrf';
import { appendRedirectParam, sanitizeRedirectPath } from '@/lib/auth-flow';
export default function SignupClient() {
const router = useRouter();
const searchParams = useSearchParams();
const { t } = useTranslation();
const { fetchWithCsrf } = useCsrf();
const [name, setName] = useState('');
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [confirmPassword, setConfirmPassword] = useState('');
const [loading, setLoading] = useState(false);
const [error, setError] = useState('');
const [showPassword, setShowPassword] = useState(false);
const [showConfirmPassword, setShowConfirmPassword] = useState(false);
const redirectTarget = sanitizeRedirectPath(searchParams.get('redirect'));
const [error, setError] = useState('');
const [showPassword, setShowPassword] = useState(false);
const [showConfirmPassword, setShowConfirmPassword] = useState(false);
const redirectTarget = sanitizeRedirectPath(searchParams.get('redirect'));
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
@@ -71,9 +71,9 @@ export default function SignupClient() {
console.error('PostHog tracking error:', error);
}
// Redirect to onboarding
router.push(appendRedirectParam('/onboarding', redirectTarget));
router.refresh();
// Redirect to onboarding
router.push(appendRedirectParam('/onboarding', redirectTarget));
router.refresh();
} else {
setError(data.error || 'Failed to create account');
}
@@ -84,17 +84,17 @@ export default function SignupClient() {
}
};
const handleGoogleSignIn = () => {
// Redirect to Google OAuth API route
window.location.href = appendRedirectParam('/api/auth/google', redirectTarget);
};
const handleGoogleSignIn = () => {
// Redirect to Google OAuth API route
window.location.href = appendRedirectParam('/api/auth/google', redirectTarget);
};
return (
<div className="min-h-screen bg-gradient-to-br from-primary-50 to-white flex items-center justify-center p-4">
<div className="w-full max-w-md">
<div className="text-center mb-8">
<Link href="/" className="inline-flex items-center space-x-2 mb-6">
<img src="/favicon1.png" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<img src="/logo.svg" alt="QR Master" className="w-10 h-10 rounded-full object-cover" />
<span className="text-2xl font-bold text-gray-900">QR Master</span>
</Link>
<h1 className="text-3xl font-bold text-gray-900">Create Account</h1>
@@ -237,11 +237,11 @@ export default function SignupClient() {
</form>
<div className="mt-6 text-center">
<p className="text-sm text-gray-600">
Already have an account?{' '}
<Link href={appendRedirectParam('/login', redirectTarget)} className="text-primary-600 hover:text-primary-700 font-medium">
Sign in
</Link>
<p className="text-sm text-gray-600">
Already have an account?{' '}
<Link href={appendRedirectParam('/login', redirectTarget)} className="text-primary-600 hover:text-primary-700 font-medium">
Sign in
</Link>
</p>
</div>
</CardContent>

View File

@@ -93,7 +93,7 @@ export default function MarketingLayout({
<Link href="/" className="flex items-center space-x-3 group">
<div className="relative w-16 h-16 overflow-hidden rounded-full shadow-indigo-200 shadow-lg group-hover:scale-105 transition-transform duration-200">
<Image
src="/favicon1.png"
src="/logo.svg"
alt="QR Master"
fill
sizes="64px"

View File

@@ -9,7 +9,7 @@ import { ObfuscatedMailto } from '@/components/ui/ObfuscatedMailto';
export const metadata: Metadata = {
title: 'About QR Master | Free QR Code Generator for Businesses',
description: 'QR Master helps businesses create, track, and manage QR codes at scale free dynamic QR codes, real analytics, and no hidden limits. Learn who we are.',
description: 'QR Master helps businesses create, track, and manage QR codes at scale - free dynamic QR codes, real analytics, and no hidden limits. Learn who we are.',
openGraph: {
title: 'About QR Master | Free Dynamic QR Codes & Analytics',
description: 'Free dynamic QR codes with scan analytics, custom branding, and no reprint headaches. Learn about the team and mission behind QR Master.',
@@ -32,7 +32,7 @@ export default function AboutPage() {
QR codes should be <span className="text-transparent bg-clip-text bg-gradient-to-r from-blue-600 to-purple-600">flexible, measurable, and reliable</span>.
</h1>
<p className="text-xl text-gray-600 max-w-2xl mx-auto mb-10 leading-relaxed">
QR Master helps teams create dynamic QR codes that can be updated after printingso you can stop reprinting materials every time something changes. Whether youre running a menu, an event, or a multi-channel campaign, QR Master turns QR codes into a tool you can manage and measure.
QR Master helps teams create dynamic QR codes that can be updated after printing-so you can stop reprinting materials every time something changes. Whether youre running a menu, an event, or a multi-channel campaign, QR Master turns QR codes into a tool you can manage and measure.
</p>
<div className="flex flex-col sm:flex-row gap-4 justify-center items-center">
@@ -53,7 +53,7 @@ export default function AboutPage() {
Our Mission
</div>
<h2 className="text-3xl font-bold text-gray-900 mb-4">
Create QR codes that work everywhereand make campaigns measurable.
Create QR codes that work everywhere-and make campaigns measurable.
</h2>
</div>
</section>
@@ -76,7 +76,7 @@ export default function AboutPage() {
</div>
<h3 className="text-xl font-bold text-gray-900 mb-3">Dynamic QR Codes</h3>
<p className="text-gray-600 leading-relaxed mb-4">
Change the destination of a QR code after its already printed. Keep your printed materials validwhile you update your content anytime.
Change the destination of a QR code after its already printed. Keep your printed materials valid-while you update your content anytime.
</p>
<Link href="/dynamic-qr-code-generator" className="text-blue-600 font-medium hover:underline">
Learn about Dynamic QR &rarr;
@@ -104,7 +104,7 @@ export default function AboutPage() {
</div>
<h3 className="text-xl font-bold text-gray-900 mb-3">Advanced Analytics</h3>
<p className="text-gray-600 leading-relaxed mb-4">
Understand QR performance with scan analyticsso you can improve placements and campaigns based on real usage over time.
Understand QR performance with scan analytics-so you can improve placements and campaigns based on real usage over time.
</p>
<Link href="/qr-code-tracking" className="text-blue-600 font-medium hover:underline">
See Analytics Features &rarr;
@@ -230,7 +230,7 @@ export default function AboutPage() {
</div>
<div className="flex items-start">
<span className="font-semibold w-32">Support hours:</span>
<span>MondayFriday, 9:0017:00 CET</span>
<span>Monday-Friday, 9:00-17:00 CET</span>
</div>
<div className="flex items-start">
<span className="font-semibold w-32">Languages:</span>

View File

@@ -14,17 +14,17 @@ const competitor = competitors['beaconstac'];
export const metadata: Metadata = {
title: {
absolute: 'Beaconstac / Uniqode Alternative for SMBs QR Master',
absolute: 'Beaconstac / Uniqode Alternative - Free, €9 or €29',
},
description:
'Looking for a Beaconstac or Uniqode alternative? QR Master is the lightweight, affordable option for SMBs and freelancers who need dynamic QR codes and analytics without enterprise pricing. From €0 free.',
'Uniqode is built for enterprise, and priced for it. If you need dynamic QR codes and scan analytics but not SOC2 and SSO: QR Master is €0, €9 or €29 a month.',
keywords:
'beaconstac alternative, uniqode alternative, beaconstac pricing, uniqode too expensive, beaconstac smb alternative, dynamic qr code alternative enterprise',
alternates: {
canonical: 'https://www.qrmaster.net/alternatives/beaconstac',
},
openGraph: {
title: 'Beaconstac / Uniqode Alternative for SMBs QR Master',
title: 'Beaconstac / Uniqode Alternative for SMBs - QR Master',
description:
'Uniqode (formerly Beaconstac) is excellent for enterprise. If you don\'t need SOC2 and SSO but do need reliable dynamic QR + analytics, QR Master starts free at €0.',
url: 'https://www.qrmaster.net/alternatives/beaconstac',
@@ -32,7 +32,7 @@ export const metadata: Metadata = {
images: ['/og-image.png'],
},
twitter: {
title: 'Beaconstac / Uniqode Alternative for SMBs QR Master',
title: 'Beaconstac / Uniqode Alternative for SMBs - QR Master',
description:
'Uniqode (formerly Beaconstac) is built for enterprise. QR Master is the affordable alternative for SMBs and freelancers who need the same core QR functionality.',
},
@@ -44,37 +44,37 @@ const faqItems = [
{
question: 'What is the difference between Beaconstac and Uniqode?',
answer:
'They are the same company. Beaconstac rebranded to Uniqode in 2023. The product is the same enterprise QR code management platform the name changed, not the features or pricing model. When people search for "Beaconstac alternative" or "Uniqode alternative," they are looking for the same thing.',
'They are the same company. Beaconstac rebranded to Uniqode in 2023. The product is the same enterprise QR code management platform - the name changed, not the features or pricing model. When people search for "Beaconstac alternative" or "Uniqode alternative," they are looking for the same thing.',
},
{
question: 'Why is Uniqode / Beaconstac considered expensive for SMBs?',
answer:
'Uniqode\'s entry price is around $5/month, but that tier includes very limited features. To get meaningful analytics, team management, and enough dynamic QR codes for a real use case, you need to spend $4999/month or more. The enterprise features SOC2 compliance, SSO/SAML, deep API access are what justify that pricing for large organizations. For an SMB that needs 50 dynamic QR codes with scan analytics, those enterprise features are not relevant, and paying for them is waste.',
'Uniqode\'s entry price is around $5/month, but that tier includes very limited features. To get meaningful analytics, team management, and enough dynamic QR codes for a real use case, you need to spend $49-99/month or more. The enterprise features - SOC2 compliance, SSO/SAML, deep API access - are what justify that pricing for large organizations. For an SMB that needs 50 dynamic QR codes with scan analytics, those enterprise features are not relevant, and paying for them is waste.',
},
{
question: 'Does QR Master have a free plan?',
answer:
'Yes. QR Master\'s free plan includes 3 active dynamic QR codes, unlimited static QR codes, and basic scan tracking. No credit card required. Uniqode does not offer a free plan you pay from the first month. QR Master Pro at €9/month includes 50 dynamic QR codes, advanced analytics, and custom branding. Business at €29/month adds bulk creation and 500 dynamic codes.',
'Yes. QR Master\'s free plan includes 3 active dynamic QR codes, unlimited static QR codes, and basic scan tracking. No credit card required. Uniqode does not offer a free plan - you pay from the first month. Colors are free on every plan. QR Master Pro at €9/month includes 50 dynamic QR codes, advanced analytics, module shapes and logo embedding. Business at €29/month adds bulk creation and 500 dynamic codes.',
},
{
question: 'Does QR Master support bulk QR code creation like Beaconstac?',
answer:
'Yes. QR Master Business (€29/month) supports CSV and Excel upload for bulk creation of up to 1,000 unique QR codes per batch. Each code can have a different destination URL, label, and UTM parameters. Beaconstac/Uniqode also supports bulk creation, but the feature is locked behind enterprise pricing tiers.',
'Yes. QR Master Business (€29/month) supports CSV and Excel upload for bulk creation: up to 1,000 static codes, or up to 500 dynamic ones per batch, the dynamic cap being the Business allowance. Each code can have a different destination URL, label, and UTM parameters. Beaconstac/Uniqode also supports bulk creation, but the feature is locked behind enterprise pricing tiers.',
},
{
question: 'Is QR Master GDPR-compliant?',
answer:
'Yes. QR Master hashes IP addresses server-side before any analytics data is stored. No raw IP is ever written to the database. Scan analytics capture device type, time, country-level location, and UTM parameters without storing personally identifiable information. This is built into the infrastructure and applies to all plans, including the free tier. Uniqode is a US company and requires additional DPA configuration for GDPR compliance.',
'Yes. QR Master hashes IP addresses server-side before any analytics data is stored. No raw IP is ever written to the database. Scan analytics capture device type, time, country-level location, and UTM parameters - without storing personally identifiable information. This is built into the infrastructure and applies to all plans, including the free tier. Uniqode is a US company and requires additional DPA configuration for GDPR compliance.',
},
{
question: 'Who should stay on Beaconstac / Uniqode instead of switching?',
answer:
'Uniqode is genuinely the right tool for large enterprises that need SOC2 Type II certification, SSO/SAML authentication, deep API integrations, and formal vendor security review processes. If your procurement team requires a security certification or your IT team needs to integrate QR code management into enterprise identity systems, Uniqode is built for that. QR Master is not an enterprise compliance platform it is a clean, fast, affordable tool for teams that need dynamic QR codes and analytics without the enterprise overhead.',
'Uniqode is genuinely the right tool for large enterprises that need SOC2 Type II certification, SSO/SAML authentication, deep API integrations, and formal vendor security review processes. If your procurement team requires a security certification or your IT team needs to integrate QR code management into enterprise identity systems, Uniqode is built for that. QR Master is not an enterprise compliance platform - it is a clean, fast, affordable tool for teams that need dynamic QR codes and analytics without the enterprise overhead.',
},
{
question: 'Can I import my codes from Beaconstac into QR Master?',
answer:
'Beaconstac/Uniqode allows CSV export of your QR code data. You can use that export to re-create your dynamic codes in QR Master using the bulk upload feature (Business plan). For dynamic codes, the redirect URL changes you will need to update printed materials or digital placements that point to Beaconstac\'s redirect infrastructure. Static codes are permanently encoded in the image and do not need migration they continue working regardless of your Beaconstac subscription.',
'Beaconstac/Uniqode allows CSV export of your QR code data. You can use that export to re-create your dynamic codes in QR Master using the bulk upload feature (Business plan, up to 500 dynamic codes per account). For dynamic codes, the redirect URL changes - you will need to update printed materials or digital placements that point to Beaconstac\'s redirect infrastructure. Static codes are permanently encoded in the image and do not need migration - they continue working regardless of your Beaconstac subscription.',
},
];
@@ -103,21 +103,21 @@ const relatedLinks = [
href: '/dynamic-qr-code-generator',
title: 'Dynamic QR Code Generator',
description:
'Create dynamic QR codes you can update after printing with scan analytics, custom branding, and dashboard management.',
'Create dynamic QR codes you can update after printing - with scan analytics, custom branding, and dashboard management.',
ctaLabel: 'Create your first dynamic QR code',
},
{
href: '/qr-code-analytics',
title: 'QR Code Analytics',
description:
'Track device, time, location, and UTM parameters for every scan without storing raw IPs or PII.',
'Track device, time, location, and UTM parameters for every scan - without storing raw IPs or PII.',
ctaLabel: 'See QR code analytics',
},
{
href: '/bulk-qr-code-generator',
title: 'Bulk QR Code Generator',
description:
'Generate up to 1,000 unique QR codes in one upload via CSV or Excel. Each code gets its own destination and UTM parameters.',
'One upload, a whole batch: up to 1,000 static codes or up to 500 dynamic ones. Each code gets its own destination and UTM parameters.',
ctaLabel: 'Explore bulk QR creation',
},
{
@@ -165,11 +165,11 @@ export default function BeaconstacAlternativePage() {
</div>
<ul className="mb-10 space-y-3">
{[
'Free plan with 3 active dynamic QR codes no credit card required',
'Pro at €9/month vs Uniqode\'s $4999/month for comparable features',
'GDPR-compliant analytics out of the box no DPA configuration needed',
'Bulk creation up to 1,000 codes on Business (€29/month)',
'Simple onboarding no enterprise setup process',
'Free plan with 3 active dynamic QR codes - no credit card required',
'Pro at €9/month vs Uniqode\'s $49-99/month for comparable features',
'GDPR-compliant analytics out of the box - no DPA configuration needed',
'Bulk creation on Business: 1,000 static or 500 dynamic (€29/month)',
'Simple onboarding - no enterprise setup process',
].map((feature) => (
<li key={feature} className="flex items-start gap-3">
<span
@@ -220,7 +220,7 @@ export default function BeaconstacAlternativePage() {
<p className="text-sm text-gray-500">Starter plan with analytics</p>
</div>
<div className="text-right">
<p className="text-2xl font-bold text-gray-800">$4999</p>
<p className="text-2xl font-bold text-gray-800">$49-99</p>
<p className="text-xs text-gray-500">per month</p>
</div>
</div>
@@ -258,28 +258,28 @@ export default function BeaconstacAlternativePage() {
<div className="space-y-6 text-lg leading-relaxed" style={{ color: '#52525B' }}>
<p>
Uniqode (formerly Beaconstac) is genuinely excellent at what it does. The platform is built for large
enterprises that operate in compliance-heavy industries healthcare, finance, government contracting
enterprises that operate in compliance-heavy industries - healthcare, finance, government contracting -
where vendors need SOC2 Type II certification, single sign-on integration, formal security review, and
a dedicated account team. For those buyers, Uniqode is a legitimate choice.
</p>
<p>
The problem is that all of that infrastructure costs money, and Uniqode passes those costs through in
its pricing. The entry plan at around $5/month is misleadingly cheap it supports so few codes and
its pricing. The entry plan at around $5/month is misleadingly cheap - it supports so few codes and
offers so few features that almost no real use case fits it. To get 50 dynamic QR codes with proper
analytics and team features, you are looking at $4999/month before you even touch the enterprise
analytics and team features, you are looking at $49-99/month before you even touch the enterprise
tier.
</p>
<p>
For a restaurant owner who wants to update their digital menu link once a quarter, or a marketing
manager running a campaign with 20 QR codes on printed materials, or a freelancer building print
campaigns for clients the SOC2 certification is irrelevant, and $49+/month is a hard number to
campaigns for clients - the SOC2 certification is irrelevant, and $49+/month is a hard number to
justify when the core functionality needed is &ldquo;create QR codes, track scans, update
destinations.&rdquo;
</p>
<p>
QR Master is built for that majority use case. It doesn&apos;t have SOC2. It doesn&apos;t have SSO.
What it has is reliable dynamic QR code management, scan analytics with GDPR-compliant tracking, and
bulk creation at a price that makes sense for teams that don&apos;t need the enterprise compliance
bulk creation - at a price that makes sense for teams that don&apos;t need the enterprise compliance
layer.
</p>
</div>
@@ -290,7 +290,7 @@ export default function BeaconstacAlternativePage() {
<h3 className="mb-2 text-lg font-semibold" style={{ color: '#166534' }}>When you should stay on Uniqode</h3>
<p style={{ color: '#27272A' }}>
If your organization requires a SOC2-certified QR code vendor, needs SSO/SAML integration, or goes
through formal vendor security review Uniqode is built for exactly that. QR Master is not. This page
through formal vendor security review - Uniqode is built for exactly that. QR Master is not. This page
is for the much larger group of SMBs and marketing teams who are paying enterprise prices for
functionality they could get at a fraction of the cost.
</p>
@@ -359,16 +359,16 @@ export default function BeaconstacAlternativePage() {
<div>
<h3 className="mb-4 text-xl font-bold" style={{ color: '#18181B' }}>Pricing structure</h3>
<p className="text-lg leading-relaxed" style={{ color: '#52525B' }}>
Uniqode starts at around $5/month but that plan is largely a placeholder it supports so few codes
Uniqode starts at around $5/month but that plan is largely a placeholder - it supports so few codes
with so few features that most users immediately hit its limits. The next meaningful tier is $49/month
or higher. There is no free plan.
</p>
<p className="mt-4 text-lg leading-relaxed" style={{ color: '#52525B' }}>
QR Master free plan includes 3 active dynamic QR codes, unlimited static codes, and basic scan
tracking permanently, without a credit card. Pro at 9/month (cancel anytime) covers 50 dynamic
codes with full analytics and custom branding. Business at 29/month adds 500 codes and bulk
tracking - permanently, without a credit card. Pro at 9/month (cancel anytime) covers 50 dynamic
codes with full analytics, module shapes and logo. Business at 29/month adds 500 codes and bulk
creation. The gap between what you get at 9/month on QR Master vs $49/month on Uniqode is significant
not because QR Master has more features, but because it doesn&apos;t charge you for enterprise
- not because QR Master has more features, but because it doesn&apos;t charge you for enterprise
infrastructure you don&apos;t use.
</p>
</div>
@@ -376,14 +376,14 @@ export default function BeaconstacAlternativePage() {
<div>
<h3 className="mb-4 text-xl font-bold" style={{ color: '#18181B' }}>Complexity and onboarding</h3>
<p className="text-lg leading-relaxed" style={{ color: '#52525B' }}>
Uniqode is a mature enterprise platform. The interface reflects that it is comprehensive, with
Uniqode is a mature enterprise platform. The interface reflects that - it is comprehensive, with
organization management, user roles, integration settings, and compliance tooling all visible.
For an enterprise IT team, that depth is valuable. For a marketing manager or restaurant owner who
just needs to create and track 20 dynamic QR codes, it adds overhead without adding value.
</p>
<p className="mt-4 text-lg leading-relaxed" style={{ color: '#52525B' }}>
QR Master is deliberately simpler. Create a QR code, set the destination, download it, and see scans
in the dashboard. The workflow is designed around the most common use cases not around the edge
in the dashboard. The workflow is designed around the most common use cases - not around the edge
cases that enterprise compliance teams need.
</p>
</div>
@@ -397,7 +397,7 @@ export default function BeaconstacAlternativePage() {
</p>
<p className="mt-4 text-lg leading-relaxed" style={{ color: '#52525B' }}>
QR Master anonymizes scan data at the infrastructure level. IP addresses are hashed server-side with
a salt before any data is written the raw IP is never stored. No configuration required. This
a salt before any data is written - the raw IP is never stored. No configuration required. This
applies from the free plan upward and is documented in the platform&apos;s open codebase.
</p>
</div>
@@ -469,7 +469,7 @@ export default function BeaconstacAlternativePage() {
{
step: '2',
title: 'Create a QR Master account',
body: 'The free plan gives you 3 dynamic codes immediately. For larger migrations, start with a Pro (€9/month) or Business (€29/month) plan Business includes bulk upload from CSV.',
body: 'The free plan gives you 3 dynamic codes immediately. For larger migrations, start with a Pro (€9/month) or Business (€29/month) plan - Business includes bulk upload from CSV.',
},
{
step: '3',
@@ -479,7 +479,7 @@ export default function BeaconstacAlternativePage() {
{
step: '4',
title: 'Update digital placements',
body: 'Replace QR code images on your website, email, and digital materials immediately these don\'t require a physical reprint.',
body: 'Replace QR code images on your website, email, and digital materials immediately - these don\'t require a physical reprint.',
},
{
step: '5',

View File

@@ -17,7 +17,7 @@ export const metadata: Metadata = {
absolute: 'QR Master vs Bitly QR Codes | Bitly Alternative',
},
description:
'Looking for a Bitly alternative for QR codes? Bitly\'s Core plan costs $10/month but only allows 2 QR codes total. QR Master is purpose-built for QR code management 50 codes at €9/month, bulk creation, GDPR analytics. From €0.',
'Looking for a Bitly alternative for QR codes? Bitly\'s Core plan costs $10/month but only allows 2 QR codes total. QR Master is purpose-built for QR code management - 50 codes at €9/month, bulk creation, GDPR analytics. From €0.',
keywords:
'bitly qr code alternative, bitly qr code limit, bitly alternative qr codes, bitly pricing qr codes, bitly 2 qr codes',
alternates: {
@@ -26,7 +26,7 @@ export const metadata: Metadata = {
openGraph: {
title: 'QR Master vs Bitly QR Codes | Bitly Alternative',
description:
'Bitly\'s Core plan costs $10/month but only gives you 2 QR codes. QR Master gives you 50 dynamic QR codes at €9/month purpose-built for QR workflows, bulk creation, and GDPR analytics.',
'Bitly\'s Core plan costs $10/month but only gives you 2 QR codes. QR Master gives you 50 dynamic QR codes at €9/month - purpose-built for QR workflows, bulk creation, and GDPR analytics.',
url: 'https://www.qrmaster.net/alternatives/bitly',
type: 'website',
images: ['/og-image.png'],
@@ -34,7 +34,7 @@ export const metadata: Metadata = {
twitter: {
title: 'QR Master vs Bitly QR Codes | Bitly Alternative',
description:
'Bitly gives you 2 QR codes for $10/month. QR Master gives you 50 at €9/month purpose-built for real QR campaigns, not link shortening with QR as an afterthought.',
'Bitly gives you 2 QR codes for $10/month. QR Master gives you 50 at €9/month - purpose-built for real QR campaigns, not link shortening with QR as an afterthought.',
},
};
@@ -54,7 +54,7 @@ const atAGlanceRows = [
{
useCase: 'Bulk QR creation',
bitly: 'No dedicated bulk QR generator.',
qrMaster: 'CSV and Excel upload creates up to 1,000 unique QR codes per batch.',
qrMaster: 'CSV and Excel upload: up to 1,000 static codes, or up to 500 dynamic ones, per batch.',
},
{
useCase: 'QR campaign analytics',
@@ -72,17 +72,17 @@ const faqItems = [
{
question: 'How many QR codes does Bitly allow per plan?',
answer:
'Bitly\'s free plan allows 1 QR code. Their Core plan (~$10/month) markets "unlimited scans" prominently but the actual limit that matters is the QR code count: 2 total. If you need a third QR code on that plan, you have to upgrade. Higher plans allow more codes, but the pricing jumps quickly relative to what you get. QR Master\'s Pro plan (€9/month) includes 50 dynamic QR codes with full analytics and no scan caps on redirects.',
'Bitly\'s free plan allows 1 QR code. Their Core plan (~$10/month) markets "unlimited scans" prominently - but the actual limit that matters is the QR code count: 2 total. If you need a third QR code on that plan, you have to upgrade. Higher plans allow more codes, but the pricing jumps quickly relative to what you get. QR Master\'s Pro plan (€9/month) includes 50 dynamic QR codes with full analytics and no scan caps on redirects.',
},
{
question: 'Is Bitly good for QR code management?',
answer:
'Bitly works for QR codes in the sense that it can generate them and track clicks. But the product is built around link management and URL shortening QR codes are a secondary feature. The workflow, the dashboard, and the pricing model are all designed around links, not QR code-specific use cases like restaurant menus, product packaging, event materials, or bulk creation for print campaigns. If QR codes are your primary use case, a purpose-built platform handles the workflow better.',
'Bitly works for QR codes in the sense that it can generate them and track clicks. But the product is built around link management and URL shortening - QR codes are a secondary feature. The workflow, the dashboard, and the pricing model are all designed around links, not QR code-specific use cases like restaurant menus, product packaging, event materials, or bulk creation for print campaigns. If QR codes are your primary use case, a purpose-built platform handles the workflow better.',
},
{
question: 'How does Bitly pricing compare to QR Master for QR codes?',
answer:
'Bitly\'s free plan allows only 1 QR code. Their Core plan (~$10/month) allows 2 QR codes. Higher plans add more codes but pricing escalates steeply. QR Master\'s free plan includes 3 active dynamic QR codes and unlimited static codes. Pro at €9/month includes 50 dynamic codes with full analytics. Business at €29/month includes 500 codes and bulk creation of up to 1,000 at once. Neither the Pro nor Business plan caps QR code redirects by scan volume.',
'Bitly\'s free plan allows only 1 QR code. Their Core plan (~$10/month) allows 2 QR codes. Higher plans add more codes but pricing escalates steeply. QR Master\'s free plan includes 3 active dynamic QR codes and unlimited static codes. Pro at €9/month includes 50 dynamic codes with full analytics. Business at €29/month includes 500 codes and bulk creation of up to 1,000 static codes, or up to 500 dynamic ones at once. Neither the Pro nor Business plan caps QR code redirects by scan volume.',
},
{
question: 'Does QR Master have link shortening like Bitly?',
@@ -92,12 +92,12 @@ const faqItems = [
{
question: 'Can I create QR codes in bulk on QR Master in a way Bitly can\'t?',
answer:
'Yes. QR Master Business (€29/month) supports CSV and Excel upload for bulk creation of up to 1,000 unique QR codes per batch. Each code in the batch can have a different destination URL, label, campaign name, and UTM parameters. Bitly does not offer bulk QR creation at any plan tier.',
'Yes. QR Master Business (€29/month) supports CSV and Excel upload for bulk creation: up to 1,000 static codes, or up to 500 dynamic ones per batch. Each code in the batch can have a different destination URL, label, campaign name, and UTM parameters. Bitly does not offer bulk QR creation at any plan tier.',
},
{
question: 'Does QR Master comply with GDPR for scan analytics?',
answer:
'Yes. QR Master hashes IP addresses server-side before any scan data is stored. No raw IP address is ever written to the database. Analytics capture device type, scan time, country-level location, and UTM parameters all without storing personally identifiable information. This is built into the infrastructure and applies from the free plan upward. Bitly is a US company with its own analytics approach EU businesses should review their DPA for GDPR compliance.',
'Yes. QR Master hashes IP addresses server-side before any scan data is stored. No raw IP address is ever written to the database. Analytics capture device type, scan time, country-level location, and UTM parameters - all without storing personally identifiable information. This is built into the infrastructure and applies from the free plan upward. Bitly is a US company with its own analytics approach - EU businesses should review their DPA for GDPR compliance.',
},
{
question: 'What happens to my Bitly QR codes if I cancel?',
@@ -131,21 +131,21 @@ const relatedLinks = [
href: '/dynamic-qr-code-generator',
title: 'Dynamic QR Code Generator',
description:
'Create QR codes built specifically for print campaigns, menus, packaging, and events with no scan limits and updateable destinations.',
'Create QR codes built specifically for print campaigns, menus, packaging, and events - with no scan limits and updateable destinations.',
ctaLabel: 'Create your first QR code',
},
{
href: '/qr-code-analytics',
title: 'QR Code Analytics',
description:
'See scan counts, device types, locations, and UTM attribution for every QR code with no caps and no upgrades required to see your own data.',
'See scan counts, device types, locations, and UTM attribution for every QR code - with no caps and no upgrades required to see your own data.',
ctaLabel: 'Explore analytics',
},
{
href: '/bulk-qr-code-generator',
title: 'Bulk QR Code Generator',
description:
'Create up to 1,000 unique QR codes from a CSV or Excel file. Each with its own URL, label, and tracking parameters. No manual creation one-by-one.',
'One upload, a whole batch: up to 1,000 static codes or up to 500 dynamic ones. Each with its own URL, label, and tracking parameters. No creating them one by one.',
ctaLabel: 'Explore bulk QR creation',
},
{
@@ -186,18 +186,18 @@ export default function BitlyAlternativePage() {
A Bitly Alternative That Actually Lets You Create QR Codes
</h1>
<p className="text-lg leading-relaxed" style={{ color: '#52525B' }}>
Bitly is a link shortener. QR codes are a secondary feature and their Core plan charges $10/month
Bitly is a link shortener. QR codes are a secondary feature - and their Core plan charges $10/month
for just 2 QR codes total. QR Master is built specifically for QR code management: 50 dynamic codes
at 9/month, bulk creation, and GDPR-compliant analytics.
</p>
</div>
<ul className="mb-10 space-y-3">
{[
'50 dynamic QR codes at €9/month not 2 codes for $10',
'50 dynamic QR codes at €9/month - not 2 codes for $10',
'Free plan: 3 dynamic QR codes + unlimited static codes, €0',
'Bulk creation from CSV/Excel up to 1,000 codes (Business plan)',
'Bulk creation from CSV/Excel: 1,000 static or 500 dynamic (Business)',
'Built for QR-specific workflows: menus, packaging, events, campaigns',
'GDPR-compliant analytics with hashed IPs no configuration needed',
'GDPR-compliant analytics with hashed IPs - no configuration needed',
].map((feature) => (
<li key={feature} className="flex items-start gap-3">
<span
@@ -243,7 +243,7 @@ export default function BitlyAlternativePage() {
<div className="space-y-5">
<div className="rounded-xl border p-5" style={{ borderColor: '#FECACA', backgroundColor: '#FEF2F2' }}>
<div className="mb-3 flex items-center justify-between">
<span className="font-semibold text-red-800">Bitly Core ~$10/month</span>
<span className="font-semibold text-red-800">Bitly Core - ~$10/month</span>
<span className="rounded-full bg-red-100 px-3 py-1 text-sm font-bold text-red-700">2 QR codes</span>
</div>
<div className="flex gap-3">
@@ -258,11 +258,11 @@ export default function BitlyAlternativePage() {
</div>
))}
</div>
<p className="mt-3 text-xs text-red-600">Marketed as "unlimited scans" but you only get 2 codes total. Need a third? Upgrade.</p>
<p className="mt-3 text-xs text-red-600">Marketed as "unlimited scans" - but you only get 2 codes total. Need a third? Upgrade.</p>
</div>
<div className="rounded-xl border p-5" style={{ borderColor: '#BBF7D0', backgroundColor: '#F0FDF4' }}>
<div className="mb-3 flex items-center justify-between">
<span className="font-semibold text-purple-800">QR Master Pro 9/month</span>
<span className="font-semibold text-purple-800">QR Master Pro - 9/month</span>
<span className="rounded-full bg-purple-100 px-3 py-1 text-sm font-bold text-purple-700">50 QR codes</span>
</div>
<div className="flex flex-wrap gap-2">
@@ -333,25 +333,25 @@ export default function BitlyAlternativePage() {
Bitly is excellent at what it was designed for: shortening URLs for social media posts, email
campaigns, and marketing links where you need a clean, short address. That core product is solid and
widely used. The problem starts when QR codes get added as a secondary feature inside a link
management tool the pricing model and workflow both reflect the link-first design.
management tool - the pricing model and workflow both reflect the link-first design.
</p>
<p>
The most glaring issue with Bitly for QR codes is the code count cap. Bitly&apos;s Core plan
(~$10/month) is marketed around &quot;unlimited clicks and scans&quot; which sounds generous.
But that plan allows a total of <strong>2 QR codes</strong>. Two. If you need a third QR code
for a second product, a second location, or a second campaign you have to jump to a more expensive
(~$10/month) is marketed around &quot;unlimited clicks and scans&quot; - which sounds generous.
But that plan allows a total of <strong>2 QR codes</strong>. Two. If you need a third QR code -
for a second product, a second location, or a second campaign - you have to jump to a more expensive
plan. For teams running any meaningful QR code operation, the code count wall is the first thing
you hit, not the scan volume.
</p>
<p>
The free plan allows exactly 1 QR code. For comparison, QR Master&apos;s free tier gives you 3
active dynamic QR codes with basic analytics and the Pro plan (9/month) gives you 50. The
active dynamic QR codes with basic analytics - and the Pro plan (9/month) gives you 50. The
economics of QR codes on Bitly force rapid upgrades the moment you have a campaign with more than
a trivial number of placements.
</p>
<p>
Beyond the code count, Bitly&apos;s QR workflow is an afterthought. The interface is built around
link management creating a short link is the primary action, and QR codes are generated as a
link management - creating a short link is the primary action, and QR codes are generated as a
secondary output from that. There is no bulk QR creation, no QR-specific analytics beyond click
counts, and no purpose-built tooling for the workflows that QR codes actually live in: restaurant
menus, product packaging, event programs, multi-location flyer campaigns.
@@ -363,8 +363,8 @@ export default function BitlyAlternativePage() {
>
<h3 className="mb-2 text-lg font-semibold" style={{ color: '#C2410C' }}>When Bitly is still the right choice</h3>
<p style={{ color: '#27272A' }}>
If you already use Bitly heavily for link shortening and genuinely need only 12 QR codes with no
expectation of growth staying on Bitly is reasonable. Consolidating tools has value. The problem
If you already use Bitly heavily for link shortening and genuinely need only 1-2 QR codes with no
expectation of growth - staying on Bitly is reasonable. Consolidating tools has value. The problem
starts the moment QR codes become a real part of your workflow, you need more than 2 codes, or you
need bulk creation. At that point the pricing math stops making sense.
</p>
@@ -433,15 +433,15 @@ export default function BitlyAlternativePage() {
<div>
<h3 className="mb-4 text-xl font-bold" style={{ color: '#18181B' }}>Code count limits and pricing at scale</h3>
<p className="text-lg leading-relaxed" style={{ color: '#52525B' }}>
Bitly&apos;s Core plan (~$10/month) advertises &quot;unlimited scans&quot; which is technically
Bitly&apos;s Core plan (~$10/month) advertises &quot;unlimited scans&quot; - which is technically
accurate but misleading. The hard limit on that plan is the number of QR codes: 2 total. The free
plan gives you 1. For most marketing use cases, running into the code count wall happens before
scan volume ever becomes an issue.
</p>
<p className="mt-4 text-lg leading-relaxed" style={{ color: '#52525B' }}>
QR Master Pro (9/month) gives you 50 active dynamic QR codes with no scan limits on redirects.
Business (29/month) gives you 500 codes plus bulk creation of up to 1,000 unique codes from a
single CSV upload. The pricing model is built around QR code management, not link click volume
Business (29/month) gives you 500 dynamic codes plus bulk creation of up to 1,000 static codes from a
single CSV upload. The pricing model is built around QR code management, not link click volume -
which means costs are predictable and don&apos;t scale with campaign success.
</p>
</div>
@@ -449,14 +449,14 @@ export default function BitlyAlternativePage() {
<div>
<h3 className="mb-4 text-xl font-bold" style={{ color: '#18181B' }}>QR-specific workflow support</h3>
<p className="text-lg leading-relaxed" style={{ color: '#52525B' }}>
QR Master is designed around QR code workflows not link management. This means the platform has
QR Master is designed around QR code workflows - not link management. This means the platform has
purpose-built generators for specific QR code types: WiFi QR codes, vCard QR codes, restaurant menu
QR codes, PDF QR codes, and more. Each type has a tailored input form and generates the correct QR
format for that use case. Bitly generates a URL-based QR code that&apos;s the only type available.
format for that use case. Bitly generates a URL-based QR code - that&apos;s the only type available.
</p>
<p className="mt-4 text-lg leading-relaxed" style={{ color: '#52525B' }}>
Bulk creation is another gap. If you are creating QR codes for a product line, an event with
multiple sessions, or a direct mail campaign creating them one at a time is not viable. QR
multiple sessions, or a direct mail campaign - creating them one at a time is not viable. QR
Master&apos;s Business plan generates up to 1,000 unique codes from a single CSV upload. Bitly has
no equivalent.
</p>
@@ -465,7 +465,7 @@ export default function BitlyAlternativePage() {
<div>
<h3 className="mb-4 text-xl font-bold" style={{ color: '#18181B' }}>Analytics depth for QR use cases</h3>
<p className="text-lg leading-relaxed" style={{ color: '#52525B' }}>
Bitly tracks clicks that is its core analytics model. For QR codes, it reports scan counts in
Bitly tracks clicks - that is its core analytics model. For QR codes, it reports scan counts in
the same way it reports link clicks. There is no device-type breakdown specific to mobile QR
scanning, no distinction between campaign placements, and no UTM parameter injection designed
for QR workflows.
@@ -473,7 +473,7 @@ export default function BitlyAlternativePage() {
<p className="mt-4 text-lg leading-relaxed" style={{ color: '#52525B' }}>
QR Master analytics are built around the QR scan as the unit of measurement. Each scan records
device type, operating system, country-level location, time, and UTM parameters. The dashboard is
organized around QR codes not links so you can see scan patterns per code, per campaign, and
organized around QR codes - not links - so you can see scan patterns per code, per campaign, and
over time in a way that makes sense for print and physical media distribution.
</p>
</div>
@@ -494,7 +494,7 @@ export default function BitlyAlternativePage() {
{[
'Anyone who hit Bitly\'s code count cap and had to upgrade just to add a third QR code',
'Marketing teams needing more than 2 QR codes for under $50/month',
'Teams creating QR codes for product packaging, event programs, or retail displays use cases Bitly has no specific tooling for',
'Teams creating QR codes for product packaging, event programs, or retail displays - use cases Bitly has no specific tooling for',
'Anyone needing bulk QR creation from CSV or Excel',
'EU businesses that need GDPR-compliant tracking without extra configuration',
].map((item) => (
@@ -512,7 +512,7 @@ export default function BitlyAlternativePage() {
</div>
<ul className="mt-4 space-y-3">
{[
'You use Bitly primarily for link shortening and genuinely need only 12 QR codes the cost of a separate QR tool doesn\'t justify the switch',
'You use Bitly primarily for link shortening and genuinely need only 1-2 QR codes - the cost of a separate QR tool doesn\'t justify the switch',
'You are already on a Bitly enterprise plan and QR codes are a minor part of a broader link management workflow that uses other Bitly features heavily',
'Your QR code count stays within Bitly\'s plan limits and you have no bulk creation needs',
].map((item) => (
@@ -567,7 +567,7 @@ export default function BitlyAlternativePage() {
{
step: '5',
title: 'Plan physical material replacement',
body: 'For anything printed flyers, packaging, business cards, menus plan replacement into your next print run. Keep your Bitly account active until all physical materials are replaced in circulation.',
body: 'For anything printed - flyers, packaging, business cards, menus - plan replacement into your next print run. Keep your Bitly account active until all physical materials are replaced in circulation.',
},
].map((step) => (
<div key={step.step} className="flex gap-6 py-7" style={{ borderBottom: step.step !== '5' ? '1px solid #E4E0D9' : 'none' }}>
@@ -596,7 +596,7 @@ export default function BitlyAlternativePage() {
<GrowthLinksSection
eyebrow="Related pages"
title="Explore QR Master"
description="See the features purpose-built for QR code workflows not link shortening with QR as a side feature."
description="See the features purpose-built for QR code workflows - not link shortening with QR as a side feature."
links={relatedLinks}
pageType="commercial"
cluster="competitor"
@@ -612,7 +612,7 @@ export default function BitlyAlternativePage() {
<h2 className="mb-4 text-4xl font-bold">50 QR codes at 9. Not 2 codes for $10.</h2>
<p className="mx-auto mb-10 max-w-2xl text-lg" style={{ color: '#A1A1AA' }}>
Start free with 3 dynamic QR codes. Pro at 9/month for 50 codes with full analytics.
Purpose-built for QR code workflows not link shortening with QR as an afterthought.
Purpose-built for QR code workflows - not link shortening with QR as an afterthought.
</p>
<div className="flex flex-col justify-center gap-4 sm:flex-row">
<TrackedCtaLink

View File

@@ -17,7 +17,7 @@ export const metadata: Metadata = {
absolute: 'QR Master vs Flowcode | Flowcode Alternative Without Forced Branding',
},
description:
'Looking for a Flowcode alternative? QR Master gives you clean, customizable QR codes without Flowcode\'s logo or scan-hijacking interstitial pages from €0 free, Pro at €9/month.',
'Looking for a Flowcode alternative? QR Master gives you clean, customizable QR codes without Flowcode\'s logo or scan-hijacking interstitial pages - from €0 free, Pro at €9/month.',
keywords:
'flowcode alternative, flowcode branding removal, flowcode white label, flowcode interstitial, flowcode pricing alternative',
alternates: {
@@ -49,7 +49,7 @@ const atAGlanceRows = [
{
useCase: 'White-label brand control',
flowcode: 'Meaningful white-label control is typically tied to higher paid tiers.',
qrMaster: 'Custom colors and logo support start on Pro at EUR 9/month.',
qrMaster: 'Colors are free on every plan. Module shapes and logo start on Pro at EUR 9/month.',
},
{
useCase: 'Direct scan experience',
@@ -59,7 +59,7 @@ const atAGlanceRows = [
{
useCase: 'Bulk QR creation',
flowcode: 'No built-in CSV or Excel bulk QR generator.',
qrMaster: 'Business supports up to 1,000 unique QR codes per bulk upload.',
qrMaster: 'Business bulk upload: up to 1,000 static codes, or up to 500 dynamic ones.',
},
{
useCase: 'EU privacy posture',
@@ -72,37 +72,37 @@ const faqItems = [
{
question: 'What is the Flowcode interstitial page and why does it matter?',
answer:
'On Flowcode\'s free tier, when someone scans your QR code, they are briefly shown a Flowcode-branded page before being redirected to your destination. This interstitial serves Flowcode\'s branding to your audience effectively using your QR code placement to advertise their product. It also affects scan tracking: the interstitial is the page being counted, which can distort your analytics. QR Master sends scanners directly to your destination with no intermediate branded page at any plan level.',
'On Flowcode\'s free tier, when someone scans your QR code, they are briefly shown a Flowcode-branded page before being redirected to your destination. This interstitial serves Flowcode\'s branding to your audience - effectively using your QR code placement to advertise their product. It also affects scan tracking: the interstitial is the page being counted, which can distort your analytics. QR Master sends scanners directly to your destination with no intermediate branded page at any plan level.',
},
{
question: 'Does Flowcode put its logo on QR codes in the free tier?',
answer:
'Yes. Flowcode\'s free tier applies a distinctive round design with Flowcode branding elements. The visual style is recognizable as a Flowcode product, not a neutral QR code. If you want a standard QR code that looks like your brand rather than Flowcode\'s, you need a paid plan. QR Master allows custom colors and logo embedding from the Pro plan (€9/month) and generates standard QR codes without third-party branding — even on the free tier.',
'Yes. Flowcode\'s free tier applies a distinctive round design with Flowcode branding elements. The visual style is recognizable as a Flowcode product, not a neutral QR code. If you want a standard QR code that looks like your brand rather than Flowcode\'s, you need a paid plan. QR Master gives you full color control on the free plan and generates standard QR codes - without third-party branding - at every tier. Module shapes and logo embedding start on Pro (€9/month).',
},
{
question: 'How much does Flowcode cost for white-label QR codes?',
answer:
'Flowcode\'s pricing for meaningful white-label starts around $49/month. Full team features, brand control, and removal of Flowcode branding typically require their higher-tier plans. QR Master Pro at €9/month includes custom colors, logo embedding, and fully branded QR codes — no Flowcode equivalent visible anywhere.',
'Flowcode\'s pricing for meaningful white-label starts around $49/month. Full team features, brand control, and removal of Flowcode branding typically require their higher-tier plans. Colors are free on QR Master. Pro at €9/month adds module shapes and logo embedding, with no QR Master branding visible anywhere at any tier.',
},
{
question: 'Does Flowcode offer bulk QR code creation?',
answer:
'Flowcode does not have a built-in bulk creation feature for generating many unique codes at once. QR Master Business (€29/month) includes CSV/Excel bulk upload to generate up to 1,000 unique QR codes per batch each with a different destination URL, label, and UTM parameters.',
'Flowcode does not have a built-in bulk creation feature for generating many unique codes at once. QR Master Business (€29/month) includes CSV/Excel bulk upload: up to 1,000 static codes, or up to 500 dynamic ones per batch - each with a different destination URL, label, and UTM parameters.',
},
{
question: 'Is Flowcode GDPR-compliant?',
answer:
'Flowcode is a US company. GDPR compliance depends on how they handle EU user data and whether their data processing agreements meet EU requirements. QR Master handles GDPR compliance at the infrastructure level: IP addresses are hashed server-side before storage, no personally identifiable scan data is retained, and analytics use anonymized signals only. This is not a setting to enable it is how the platform works.',
'Flowcode is a US company. GDPR compliance depends on how they handle EU user data and whether their data processing agreements meet EU requirements. QR Master handles GDPR compliance at the infrastructure level: IP addresses are hashed server-side before storage, no personally identifiable scan data is retained, and analytics use anonymized signals only. This is not a setting to enable - it is how the platform works.',
},
{
question: 'What happens to my Flowcode QR codes if I cancel?',
answer:
'Flowcode QR codes point to Flowcode\'s redirect infrastructure. If you cancel your paid plan and drop to the free tier, your QR codes may revert to showing the Flowcode-branded interstitial again. If you close your account entirely, the redirects stop and your printed QR codes become dead ends. Plan your migration before canceling switch to QR Master and reprint or update digital placements before closing the Flowcode account.',
'Flowcode QR codes point to Flowcode\'s redirect infrastructure. If you cancel your paid plan and drop to the free tier, your QR codes may revert to showing the Flowcode-branded interstitial again. If you close your account entirely, the redirects stop and your printed QR codes become dead ends. Plan your migration before canceling - switch to QR Master and reprint or update digital placements before closing the Flowcode account.',
},
{
question: 'Can I import my Flowcode QR codes into QR Master?',
answer:
'There is no direct import Flowcode\'s redirect infrastructure is separate from QR Master\'s. You need to re-create each dynamic QR code in QR Master with the same destination URLs. For bulk re-creation, QR Master\'s Business plan allows CSV upload so you can migrate many codes at once rather than one by one. Static QR codes are permanently encoded and do not need migration they work independently of any platform.',
'There is no direct import - Flowcode\'s redirect infrastructure is separate from QR Master\'s. You need to re-create each dynamic QR code in QR Master with the same destination URLs. For bulk re-creation, QR Master\'s Business plan allows CSV upload so you can migrate many codes at once rather than one by one. Static QR codes are permanently encoded and do not need migration - they work independently of any platform.',
},
];
@@ -131,14 +131,14 @@ const relatedLinks = [
href: '/dynamic-qr-code-generator',
title: 'Dynamic QR Code Generator',
description:
'Create QR codes with your own branding colors, logo, and design that you can update after printing without replacing the code.',
'Create QR codes with your own branding - colors, logo, and design - that you can update after printing without replacing the code.',
ctaLabel: 'Create a branded dynamic QR code',
},
{
href: '/qr-code-analytics',
title: 'QR Code Analytics',
description:
'Track every scan with device, time, and location data sent directly to your destination with no interstitial page in the way.',
'Track every scan with device, time, and location data - sent directly to your destination with no interstitial page in the way.',
ctaLabel: 'Explore QR analytics',
},
{
@@ -152,7 +152,7 @@ const relatedLinks = [
href: '/pricing',
title: 'QR Master Pricing',
description:
'Free for 3 dynamic codes. Pro at €9/month includes 50 dynamic codes, custom branding, and advanced analytics.',
'Free for 3 dynamic codes, with full color control. Pro at €9/month includes 50 dynamic codes, module shapes, logo and advanced analytics.',
ctaLabel: 'See pricing',
},
];
@@ -187,17 +187,17 @@ export default function FlowcodeAlternativePage() {
</h1>
<p className="text-lg leading-relaxed" style={{ color: '#52525B' }}>
Flowcode&apos;s free tier puts their logo on every QR code and routes your scanners through a
Flowcode-branded interstitial page. QR Master sends scanners directly to your destination no
Flowcode-branded interstitial page. QR Master sends scanners directly to your destination - no
third-party branding, no interstitials, at any plan level.
</p>
</div>
<ul className="mb-10 space-y-3">
{[
'No Flowcode branding on your QR codes even on the free plan',
'No branded interstitial page instant redirect, no Flowcode marketing in between',
'Custom colors and logo from Pro (€9/month)',
'Bulk creation up to 1,000 codes on the Business plan',
'GDPR-compliant analytics with hashed IPs built in, not a setting',
'No Flowcode branding on your QR codes - even on the free plan',
'No branded interstitial page - instant redirect, no Flowcode marketing in between',
'Colors free, shapes and logo from Pro (€9/month)',
'Bulk creation on Business: 1,000 static or 500 dynamic',
'GDPR-compliant analytics with hashed IPs - built in, not a setting',
].map((feature) => (
<li key={feature} className="flex items-start gap-3">
<span
@@ -313,20 +313,20 @@ export default function FlowcodeAlternativePage() {
<div className="space-y-6 text-lg leading-relaxed" style={{ color: '#52525B' }}>
<p>
Flowcode is a well-built product with strong design capabilities. The problem is not the product
itself it&apos;s the business model on the free tier. Flowcode monetizes free users by using their QR
itself - it&apos;s the business model on the free tier. Flowcode monetizes free users by using their QR
code placements as advertising inventory for Flowcode&apos;s own brand.
</p>
<p>
In practice, this means two things. First, the QR codes generated on the free plan are visually styled
as Flowcode products the distinctive round design with Flowcode design elements makes it clear to
as Flowcode products - the distinctive round design with Flowcode design elements makes it clear to
anyone familiar with the space that this is a Flowcode code, not a custom QR. If you&apos;re a
restaurant, a brand, or an agency putting this code on client materials, it is your placement that
Flowcode is using to advertise itself.
</p>
<p>
Second and more consequentially Flowcode&apos;s free tier routes every scan through an interstitial
Second - and more consequentially - Flowcode&apos;s free tier routes every scan through an interstitial
page before the scanner reaches your destination. That page carries Flowcode branding. You are sending
customers to your menu, product page, or campaign but they pass through Flowcode&apos;s branded
customers to your menu, product page, or campaign - but they pass through Flowcode&apos;s branded
experience first. The customer&apos;s first impression is Flowcode, not you.
</p>
<p>
@@ -342,8 +342,8 @@ export default function FlowcodeAlternativePage() {
<h3 className="mb-2 text-lg font-semibold" style={{ color: '#1D4ED8' }}>How QR Master handles this</h3>
<p style={{ color: '#27272A' }}>
QR Master does not apply third-party branding to QR codes at any plan level. The free tier generates
standard QR codes without a QR Master logo, without a forced visual style, and without an interstitial
page. Scanners go directly to your destination. Custom colors and logo embedding are available on Pro
standard QR codes - without a QR Master logo, without a forced visual style, and without an interstitial
page. Scanners go directly to your destination. Colors are free on every plan. Module shapes and logo embedding start on Pro
(9/month). White-label and your brand are the baseline, not an upgrade.
</p>
</div>
@@ -411,14 +411,14 @@ export default function FlowcodeAlternativePage() {
<div>
<h3 className="mb-4 text-xl font-bold" style={{ color: '#18181B' }}>Branding control</h3>
<p className="text-lg leading-relaxed" style={{ color: '#52525B' }}>
Flowcode&apos;s free QR codes are visually distinct the rounded, branded design is recognizable.
Flowcode&apos;s free QR codes are visually distinct - the rounded, branded design is recognizable.
If you are an agency, a restaurant, or a brand putting these on client materials, the Flowcode
aesthetic tells your audience that this is a Flowcode product. White-label where the code looks
like yours requires a paid plan.
aesthetic tells your audience that this is a Flowcode product. White-label - where the code looks
like yours - requires a paid plan.
</p>
<p className="mt-4 text-lg leading-relaxed" style={{ color: '#52525B' }}>
QR Master generates standard QR codes on all plans. On the free plan, you get a clean standard QR.
On Pro (9/month), you add your brand colors and logo to the center of the code. The baseline is
Brand colors are free on every plan. On Pro (9/month), you add module shapes and your logo in the center of the code. The baseline is
always a neutral code that belongs to your brand, not ours.
</p>
</div>
@@ -427,17 +427,17 @@ export default function FlowcodeAlternativePage() {
<h3 className="mb-4 text-xl font-bold" style={{ color: '#18181B' }}>Scan experience and interstitials</h3>
<p className="text-lg leading-relaxed" style={{ color: '#52525B' }}>
The interstitial is a real issue for anyone using QR codes in a customer-facing context. A scanner
at a restaurant table or on a product package is primed to go directly to the destination a menu,
at a restaurant table or on a product package is primed to go directly to the destination - a menu,
a product page, a contact form. An intermediate page breaks that expectation, even if it only lasts
a second or two. It&apos;s also a branding signal: Flowcode appears in the path between your brand
and your customer.
</p>
<p className="mt-4 text-lg leading-relaxed" style={{ color: '#52525B' }}>
QR Master does not show a branded interstitial page. Like any dynamic QR platform, the redirect
runs through QR Master's servers (qrmaster.net) to log the scan but the scanner sees no marketing
runs through QR Master's servers (qrmaster.net) to log the scan - but the scanner sees no marketing
content, no QR Master splash page, and no dwell-time promotion. It processes the scan and forwards
immediately. The visual and branding of the QR code itself is fully customizable colors, logo,
shape without any QR Master identity imposed on it.
immediately. The visual and branding of the QR code itself is fully customizable - colors, logo,
shape - without any QR Master identity imposed on it.
</p>
</div>
@@ -472,7 +472,7 @@ export default function FlowcodeAlternativePage() {
'Brands that want QR codes to reflect their identity, not a third-party platform',
'Agencies putting QR codes on client materials who can\'t have Flowcode branding visible',
'EU businesses that need GDPR-compliant scan tracking without configuration',
'Teams that need bulk QR creation Flowcode has no bulk generation tool',
'Teams that need bulk QR creation - Flowcode has no bulk generation tool',
'Anyone priced out of Flowcode\'s white-label tier but needing clean, functional QR codes',
].map((item) => (
<li key={item} className="flex items-start gap-2 text-gray-700">
@@ -540,7 +540,7 @@ export default function FlowcodeAlternativePage() {
{
step: '5',
title: 'Plan the physical reprint',
body: 'For printed materials menus, flyers, packaging plan the replacement into your next natural reprint cycle. Keep your Flowcode account active until the reprint is done and distributed.',
body: 'For printed materials - menus, flyers, packaging - plan the replacement into your next natural reprint cycle. Keep your Flowcode account active until the reprint is done and distributed.',
},
].map((step) => (
<div key={step.step} className="flex gap-6 py-7" style={{ borderBottom: step.step !== '5' ? '1px solid #E4E0D9' : 'none' }}>

View File

@@ -14,17 +14,17 @@ const competitor = competitors['qr-code-generator'];
export const metadata: Metadata = {
title: {
absolute: 'QR-Code-Generator.com Alternative No Bait and Switch | QR Master',
absolute: 'QR-Code-Generator.com Alternative - No Bait and Switch | QR Master',
},
description:
'Looking for a QR-Code-Generator.com alternative? QR Master gives you 3 truly free dynamic QR codes no trial that expires mid-campaign, no forced annual contracts. Transparent pricing from €0.',
'Looking for a QR-Code-Generator.com alternative? QR Master gives you 3 truly free dynamic QR codes - no trial that expires mid-campaign, no forced annual contracts. Transparent pricing from €0.',
keywords:
'qr-code-generator.com alternative, alternative to qr code generator, qr code generator free expired, dynamic qr code deactivated, qr code bait switch',
alternates: {
canonical: 'https://www.qrmaster.net/alternatives/qr-code-generator',
},
openGraph: {
title: 'QR-Code-Generator.com Alternative No Bait and Switch',
title: 'QR-Code-Generator.com Alternative - No Bait and Switch',
description:
'Your dynamic QR code stopped working after two weeks? QR Master offers 3 permanently free dynamic codes, honest pricing, and no hidden trial timers.',
url: 'https://www.qrmaster.net/alternatives/qr-code-generator',
@@ -32,7 +32,7 @@ export const metadata: Metadata = {
images: ['/og-image.png'],
},
twitter: {
title: 'QR-Code-Generator.com Alternative No Bait and Switch',
title: 'QR-Code-Generator.com Alternative - No Bait and Switch',
description:
'Your dynamic QR code stopped working after two weeks? QR Master offers 3 permanently free dynamic codes and honest pricing.',
},
@@ -44,37 +44,37 @@ const faqItems = [
{
question: 'Why did my dynamic QR code from QR-Code-Generator.com stop working?',
answer:
'QR-Code-Generator.com offers dynamic QR codes on a free trial basis typically around 14 days. After the trial ends, the code is deactivated. Your printed materials (flyers, menus, packaging) become dead ends. To reactivate, they require purchasing an annual subscription. QR Master does not do this: the 3 free dynamic codes on our free plan stay active as long as your account exists.',
'QR-Code-Generator.com offers dynamic QR codes on a free trial basis - typically around 14 days. After the trial ends, the code is deactivated. Your printed materials (flyers, menus, packaging) become dead ends. To reactivate, they require purchasing an annual subscription. QR Master does not do this: the 3 free dynamic codes on our free plan stay active as long as your account exists.',
},
{
question: 'Can I switch from QR-Code-Generator.com without reprinting everything?',
answer:
'Dynamic QR codes cannot be migrated directly because the destination URL is encoded into the QR code image itself each provider uses their own redirect infrastructure. If you are still within the deactivation period, create new dynamic codes in QR Master immediately and update your placements (digital ones) or plan your next reprint run. Static QR codes you created on QR-Code-Generator.com remain permanently valid regardless of your subscription status.',
'Dynamic QR codes cannot be migrated directly because the destination URL is encoded into the QR code image itself - each provider uses their own redirect infrastructure. If you are still within the deactivation period, create new dynamic codes in QR Master immediately and update your placements (digital ones) or plan your next reprint run. Static QR codes you created on QR-Code-Generator.com remain permanently valid regardless of your subscription status.',
},
{
question: 'What does QR Master give me for free, permanently?',
answer:
'The QR Master free plan includes 3 active dynamic QR codes with basic scan tracking and unlimited static QR codes no trial period, no credit card required, no expiration. The 3 dynamic codes are always active. If you need more, Pro starts at €9/month for 50 dynamic codes with full analytics.',
'The QR Master free plan includes 3 active dynamic QR codes with basic scan tracking and unlimited static QR codes - no trial period, no credit card required, no expiration. The 3 dynamic codes are always active. If you need more, Pro starts at €9/month for 50 dynamic codes with full analytics.',
},
{
question: 'Is the free plan at QR Master really free, or will it expire like QR-Code-Generator.com?',
answer:
'The free tier is permanently free within the defined limits. There is no 14-day clock, no activation fee, no "trial" framing. The 3 dynamic codes on the free plan continue working as long as your account is active. We make money from Pro (€9/month) and Business (€29/month) upgrades not from deactivating free users after they\'ve already printed materials.',
'The free tier is permanently free within the defined limits. There is no 14-day clock, no activation fee, no "trial" framing. The 3 dynamic codes on the free plan continue working as long as your account is active. We make money from Pro (€9/month) and Business (€29/month) upgrades - not from deactivating free users after they\'ve already printed materials.',
},
{
question: 'Does QR Master comply with GDPR for scan analytics?',
answer:
'Yes. QR Master anonymizes IP addresses using server-side hashing with a salt before any analytics data is stored. No personally identifiable IP addresses are recorded. Scan data includes device type, time, country-level location, and UTM parameters all without storing raw IPs. This is built into the platform, not a bolt-on option.',
'Yes. QR Master anonymizes IP addresses using server-side hashing with a salt before any analytics data is stored. No personally identifiable IP addresses are recorded. Scan data includes device type, time, country-level location, and UTM parameters - all without storing raw IPs. This is built into the platform, not a bolt-on option.',
},
{
question: 'What happens to my QR codes if I cancel my QR Master subscription?',
answer:
'If you downgrade from a paid plan to Free, your dynamic codes are paused (not deleted) if you exceed the 3-code free limit. You choose which 3 to keep active. Static codes are unaffected and remain permanently valid. If you close your account entirely, dynamic codes stop redirecting which is why we recommend switching to static QR codes for any permanent materials that you cannot update.',
'If you downgrade from a paid plan to Free, your dynamic codes are paused (not deleted) if you exceed the 3-code free limit. You choose which 3 to keep active. Static codes are unaffected and remain permanently valid. If you close your account entirely, dynamic codes stop redirecting - which is why we recommend switching to static QR codes for any permanent materials that you cannot update.',
},
{
question: 'Does QR Master support bulk QR code creation?',
answer:
'Yes. The Business plan (€29/month) includes bulk creation via CSV or Excel upload up to 1,000 unique QR codes per batch. Each code can have a different destination URL, label, and UTM parameters. QR-Code-Generator.com does not offer bulk creation at any tier.',
'Yes. The Business plan (€29/month) includes bulk creation via CSV or Excel upload: up to 1,000 static codes, or up to 500 dynamic ones per batch. Each code can have a different destination URL, label, and UTM parameters. QR-Code-Generator.com does not offer bulk creation at any tier.',
},
];
@@ -110,7 +110,7 @@ const relatedLinks = [
href: '/qr-code-analytics',
title: 'QR Code Analytics',
description:
'See which placements drive scans, which devices your audience uses, and where your codes are being scanned all in one dashboard.',
'See which placements drive scans, which devices your audience uses, and where your codes are being scanned - all in one dashboard.',
ctaLabel: 'Explore QR code analytics',
},
{
@@ -158,17 +158,17 @@ export default function QRCodeGeneratorAlternativePage() {
</h1>
<p className="text-lg leading-relaxed mb-8" style={{ color: '#52525B' }}>
QR-Code-Generator.com deactivates dynamic QR codes after roughly two weeks right after you&apos;ve
QR-Code-Generator.com deactivates dynamic QR codes after roughly two weeks - right after you&apos;ve
printed the flyers. QR Master gives you 3 free dynamic codes that stay active permanently.
No hidden trial, no forced annual contract.
</p>
<ul className="space-y-3 mb-10">
{[
'3 permanently active dynamic QR codes free forever',
'3 permanently active dynamic QR codes - free forever',
'Transparent pricing: Pro at €9/mo, cancel anytime',
'GDPR-compliant analytics with hashed IPs, built in',
'Bulk creation up to 1,000 codes (Business plan)',
'Bulk creation: 1,000 static or 500 dynamic (Business plan)',
].map((item) => (
<li key={item} className="flex items-start gap-3">
<span
@@ -185,13 +185,13 @@ export default function QRCodeGeneratorAlternativePage() {
<div className="flex flex-col gap-3 sm:flex-row">
<TrackedCtaLink
href="/signup"
ctaLabel="Start Free No Credit Card"
ctaLabel="Start Free - No Credit Card"
ctaLocation="hero_primary"
pageType="commercial"
cluster="competitor"
>
<Button size="lg" className="w-full h-13 px-8 text-base sm:w-auto">
Start Free No Credit Card
Start Free - No Credit Card
</Button>
</TrackedCtaLink>
<TrackedCtaLink
@@ -292,7 +292,7 @@ export default function QRCodeGeneratorAlternativePage() {
<div className="grid gap-10 md:grid-cols-2">
<div className="space-y-5 text-base leading-relaxed" style={{ color: '#52525B' }}>
<p>
QR-Code-Generator.com markets dynamic QR codes as free to create. And they are for about two weeks.
QR-Code-Generator.com markets dynamic QR codes as free to create. And they are - for about two weeks.
After roughly 14 days, those dynamic codes stop redirecting. Anyone who scans them sees a dead page
or a prompt to upgrade.
</p>
@@ -303,7 +303,7 @@ export default function QRCodeGeneratorAlternativePage() {
</p>
<p>
Hundreds of reviews on Trustpilot describe feeling &ldquo;trapped&rdquo; because the alternative
replacing all the printed materials is more expensive. The annual plan costs around
- replacing all the printed materials - is more expensive. The annual plan costs around
25.99/month billed yearly, over 300 upfront.
</p>
</div>
@@ -320,7 +320,7 @@ export default function QRCodeGeneratorAlternativePage() {
no countdown, no automatic deactivation.
</p>
<p className="text-base leading-relaxed" style={{ color: '#27272A' }}>
If you need more than 3, you upgrade to Pro at 9/month month-to-month with no forced annual
If you need more than 3, you upgrade to Pro at 9/month - month-to-month with no forced annual
commitment. Static codes are unlimited and free forever.
</p>
</div>
@@ -396,7 +396,7 @@ export default function QRCodeGeneratorAlternativePage() {
</div>
</section>
{/* Detailed Comparisons 3 cards */}
{/* Detailed Comparisons - 3 cards */}
<section className="py-24" style={{ backgroundColor: '#F8F7F4' }}>
<div className="container mx-auto max-w-5xl px-4 sm:px-6 lg:px-8">
<h2 className="text-3xl sm:text-4xl font-bold tracking-tight mb-12" style={{ color: '#111110' }}>
@@ -407,7 +407,7 @@ export default function QRCodeGeneratorAlternativePage() {
{[
{
label: 'Pricing transparency',
body: 'QR-Code-Generator.com lists dynamic codes as free true for the 14-day trial. Reactivation requires an annual plan billed upfront (€100€300+).',
body: 'QR-Code-Generator.com lists dynamic codes as free - true for the 14-day trial. Reactivation requires an annual plan billed upfront (€100-€300+).',
highlight: 'QR Master pricing is explicit: Free for 3 dynamic codes, Pro at €9/month. No fine print about trial periods or forced billing cycles.',
accent: '#D97706',
},
@@ -456,7 +456,7 @@ export default function QRCodeGeneratorAlternativePage() {
},
{
title: 'Create a free QR Master account',
body: 'Sign up at qrmaster.net no credit card required. The free plan gives you 3 active dynamic QR codes immediately.',
body: 'Sign up at qrmaster.net - no credit card required. The free plan gives you 3 active dynamic QR codes immediately.',
},
{
title: 'Re-create your dynamic codes',
@@ -464,7 +464,7 @@ export default function QRCodeGeneratorAlternativePage() {
},
{
title: 'Update digital placements first',
body: 'Replace the QR code image on your website, email signatures, social media, and digital ads no reprinting needed.',
body: 'Replace the QR code image on your website, email signatures, social media, and digital ads - no reprinting needed.',
},
{
title: 'Plan your reprint cycle',
@@ -531,7 +531,7 @@ export default function QRCodeGeneratorAlternativePage() {
</p>
<ul className="space-y-4">
{[
'You only need static QR codes both platforms generate these for free, and static codes never expire',
'You only need static QR codes - both platforms generate these for free, and static codes never expire',
'You need one quick QR code for a presentation or digital-only use where deactivation doesn\'t matter',
'You\'re already on an active annual plan and aren\'t printing new materials anytime soon',
].map((item, idx) => (

View File

@@ -6,22 +6,22 @@ import { getAuthorBySlug, getPostsByAuthor } from "@/lib/content";
import { authors } from "@/lib/author-data";
import { authorPageSchema } from "@/lib/schema";
export function generateMetadata({ params }: { params: { slug: string } }) {
const author = getAuthorBySlug(params.slug);
if (!author) return {};
return {
title: {
absolute: `${author.name} - ${author.role}`,
},
description: author.bio,
alternates: {
canonical: `https://www.qrmaster.net/authors/${author.slug}`,
},
openGraph: {
url: `https://www.qrmaster.net/authors/${author.slug}`,
},
};
}
export function generateMetadata({ params }: { params: { slug: string } }) {
const author = getAuthorBySlug(params.slug);
if (!author) return {};
return {
title: {
absolute: `${author.name} - ${author.role}`,
},
description: author.bio,
alternates: {
canonical: `https://www.qrmaster.net/authors/${author.slug}`,
},
openGraph: {
url: `https://www.qrmaster.net/authors/${author.slug}`,
},
};
}
export function generateStaticParams() {
return authors.map((author) => ({
@@ -59,7 +59,7 @@ export default function AuthorPage({ params }: { params: { slug: string } }) {
<div className="space-y-3">
<div className="flex items-center gap-3">
<h1 className="text-3xl font-extrabold text-gray-900">{author.name}</h1>
<Image src="/favicon1.png" alt="QR Master" width={24} height={24} className="rounded-full object-cover opacity-90" />
<Image src="/logo.svg" alt="QR Master" width={24} height={24} className="rounded-full object-cover opacity-90" />
</div>
<p className="text-lg text-blue-600 font-medium">{author.role}</p>
<p className="text-gray-600 max-w-xl">{author.bio}</p>

View File

@@ -14,10 +14,10 @@ import { MarketingPageTracker } from '@/components/marketing/MarketingAnalytics'
export const metadata: Metadata = {
title: {
absolute: 'Bulk QR Code Generator for Excel, CSV and Google Sheets',
absolute: 'Bulk QR Code Generator - Static or Dynamic, from Excel',
},
description:
'Generate up to 1,000 QR codes from Excel, CSV, XLSX, or exported Google Sheets data. Upload, preview, batch-create, download ZIP files, or save to your dashboard.',
'Upload a CSV or Excel file and get up to 1,000 static QR codes at once, or up to 500 trackable dynamic ones on Business. Preview every row before you generate.',
keywords:
'bulk qr code generator, bulk qr code generator excel, batch qr code generator, qr code from excel, csv qr code generator, bulk qr generator, bulk qr code generator in google sheets, spreadsheet qr generation',
alternates: {
@@ -28,17 +28,17 @@ export const metadata: Metadata = {
},
},
openGraph: {
title: 'Bulk QR Code Generator for Excel, CSV and Google Sheets',
title: 'Bulk QR Code Generator - Static or Dynamic, from Excel',
description:
'Generate up to 1,000 QR codes from CSV, Excel, XLSX, or exported Google Sheets data.',
'One spreadsheet in, a full batch out. Up to 1,000 static codes, or up to 500 trackable dynamic ones.',
url: 'https://www.qrmaster.net/bulk-qr-code-generator',
type: 'website',
images: ['/og-image.png'],
},
twitter: {
title: 'Bulk QR Code Generator for Excel, CSV and Google Sheets',
title: 'Bulk QR Code Generator - Static or Dynamic, from Excel',
description:
'Generate up to 1,000 QR codes from CSV, Excel, XLSX, or exported Google Sheets data.',
'One spreadsheet in, a full batch out. Up to 1,000 static codes, or up to 500 trackable dynamic ones.',
},
};
@@ -59,9 +59,9 @@ const featureCards = [
'The current bulk creation flow limits each upload to 1,000 rows so the batch stays predictable and reviewable.',
},
{
title: 'Static QR output',
title: 'Static or dynamic output',
description:
'Bulk creation currently generates static QR codes. These codes do not include post-print editing or tracking.',
'Choose per upload. Static for large print batches. Dynamic when the destination has to stay editable and the scans have to be countable.',
},
{
title: 'ZIP download',
@@ -117,13 +117,13 @@ const useCases = [
{
title: 'Product labels and inserts',
description:
'Generate large static batches for packaging, inserts, manuals, or support labels when every unit needs a QR code.',
'Generate a batch for packaging, inserts, manuals, or support labels. Static when the link is permanent, dynamic when the linked page will change.',
points: ['One spreadsheet as input', 'Consistent file naming', 'Printable SVG output'],
},
{
title: 'Event materials',
description:
'Produce batches for badges, handouts, booth materials, or attendee resources when a static QR is enough.',
'Produce batches for badges, handouts, booth materials, or attendee resources. Use dynamic codes when the event page changes after print.',
points: ['Batch generation from one file', 'Preview before generation', 'Download everything together'],
},
{
@@ -149,7 +149,7 @@ const faqItems = [
{
question: 'Are bulk-generated QR codes dynamic or trackable?',
answer:
'No. The current bulk creation flow generates static QR codes, so those codes do not include post-print editing or tracking.',
'Both are available. Static is the default and runs up to 1,000 rows per upload. Dynamic codes stay editable after print and are trackable, capped at 500 on Business by your dynamic code allowance.',
},
{
question: 'What file formats can I upload?',
@@ -194,12 +194,12 @@ const softwareSchema = {
availability: 'https://schema.org/InStock',
},
description:
'Generate up to 1,000 static QR codes from CSV, Excel, XLSX, or exported Google Sheets files in the QR Master Business plan.',
'Generate up to 1,000 static QR codes, or up to 500 trackable dynamic codes, from CSV, Excel, XLSX, or exported Google Sheets files on the QR Master Business plan.',
featureList: [
'CSV, XLS, and XLSX upload',
'Excel and Google Sheets CSV export workflow',
'Up to 1,000 rows per upload',
'Static QR code generation',
'Static or dynamic QR code generation',
'ZIP download of generated SVG files',
'Optional save-to-dashboard step',
],
@@ -321,7 +321,7 @@ export default function BulkQRCodeGeneratorPage() {
<p className="text-xl leading-relaxed text-gray-600">
Stop mapping spreadsheet rows to QR codes by hand. Upload a
CSV or Excel file, preview every code, and download up to
1,000 print-ready static codes in minutes.
1,000 print-ready codes in minutes - static, or dynamic when you need to edit and track them later.
</p>
</div>
@@ -329,7 +329,7 @@ export default function BulkQRCodeGeneratorPage() {
{[
'CSV, XLS, and XLSX upload',
'Up to 1,000 rows per upload',
'Static QR code output',
'Static or dynamic output per upload',
'ZIP download and optional save to dashboard',
].map((feature) => (
<div key={feature} className="flex items-center gap-3">
@@ -384,7 +384,7 @@ export default function BulkQRCodeGeneratorPage() {
))}
</div>
<p className="mt-4 text-center text-sm text-gray-600">
Designed for bulk static output, not dynamic tracking.
Static for large print batches. Dynamic when you need tracking.
</p>
</Card>
<div className="absolute -right-4 -top-4 rounded-full bg-green-500 px-4 py-2 text-sm font-semibold text-white shadow-lg">
@@ -397,9 +397,9 @@ export default function BulkQRCodeGeneratorPage() {
<div className="container mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<AnswerFirstBlock
whatIsIt="QR Master bulk creation is a spreadsheet-driven Business-plan workflow for generating up to 1,000 static QR codes in one upload. It is useful when you need many printable QR codes quickly, not when you need post-print editing or tracking."
whatIsIt="QR Master bulk creation is a spreadsheet-driven Business-plan workflow for generating up to 1,000 static QR codes in one upload, or up to 500 dynamic ones that stay editable and trackable after print."
whenToUse={[
'You need many static QR codes from one spreadsheet instead of one-by-one creation',
'You need many QR codes from one spreadsheet instead of one-by-one creation',
'You want SVG files downloaded together as a ZIP archive',
'You are preparing labels, inserts, event materials, or other repeatable print batches',
]}
@@ -565,7 +565,7 @@ export default function BulkQRCodeGeneratorPage() {
<div className="container mx-auto max-w-4xl px-4 text-center sm:px-6 lg:px-8">
<h2 className="mb-6 text-4xl font-bold">Generate bulk QR codes without one-by-one setup</h2>
<p className="mb-8 text-xl text-green-100">
Use the Business-plan bulk flow when you need a large static QR batch from a single spreadsheet.
One spreadsheet in, a full batch out. Static up to 1,000, or dynamic and trackable up to 500 on Business.
</p>
<div className="flex flex-col justify-center gap-4 sm:flex-row">
<Link href="/pricing">

View File

@@ -94,9 +94,12 @@ export function generateMetadata({ params }: PageProps): Metadata {
follow: true,
},
icons: {
icon: [{ url: "/favicon1.png", type: "image/png" }],
shortcut: "/favicon1.png",
apple: "/favicon1.png",
icon: [
{ url: "/favicon.svg", type: "image/svg+xml" },
{ url: "/favicon.ico", sizes: "16x16 32x32", type: "image/x-icon" },
],
shortcut: "/favicon.ico",
apple: "/logo.svg",
},
openGraph: {
title,

View File

@@ -1,4 +1,4 @@
import { getAggregateRating } from '@/lib/testimonial-data';
import { getAggregateRating } from '@/lib/testimonial-data';
import React from 'react';
import type { Metadata } from 'next';
import Link from 'next/link';
@@ -26,8 +26,8 @@ import {
import { MiniGenerator } from '@/components/marketing/MiniGenerator';
export const metadata: Metadata = {
title: 'Free Custom QR Code Generator with Logo & Colors',
description: 'Create custom QR codes with your logo, brand colors, and unique frames. Free designer with instant preview. Download PNG/SVG. No signup needed to try.',
title: 'Custom QR Code Generator with Logo & Brand Colors',
description: 'Put your logo and brand colors into the code itself. Live preview as you design, print-ready SVG export that stays sharp at any size. No signup needed to try.',
keywords: [
'custom qr code generator',
'qr code with logo',
@@ -337,7 +337,7 @@ export default function CustomQRCodeGeneratorPage() {
{
href: '/tools/barcode-generator',
title: 'Free Barcode Generator',
description: 'Need a 1D barcode for retail or inventory? Create EAN-13, UPC-A, and Code 128 barcodes instantly no signup required.',
description: 'Need a 1D barcode for retail or inventory? Create EAN-13, UPC-A, and Code 128 barcodes instantly - no signup required.',
ctaLabel: 'Create a barcode',
},
{
@@ -369,7 +369,7 @@ export default function CustomQRCodeGeneratorPage() {
</h1>
<p className="text-xl text-gray-600 leading-relaxed">
Add your logo, choose custom colors, and design unique frames. Professional QR codes in minutes try it free, no signup required.
Add your logo, choose custom colors, and design unique frames. Professional QR codes in minutes - try it free, no signup required.
</p>
<div className="space-y-3">
@@ -417,7 +417,7 @@ export default function CustomQRCodeGeneratorPage() {
<div className="container mx-auto px-4 sm:px-6 lg:px-8 max-w-5xl">
<div className="text-center mb-12">
<h2 className="text-4xl font-bold text-gray-900 mb-4">
Your Logo Won't Break the QR Code Here's Why
Your Logo Won't Break the QR Code - Here's Why
</h2>
<p className="text-xl text-gray-600 max-w-3xl mx-auto">
QR codes have built-in error correction. Our generator uses the highest level (H = 30% redundancy), which means up to 30% of the code can be covered or damaged and still scan perfectly.
@@ -681,7 +681,7 @@ export default function CustomQRCodeGeneratorPage() {
</div>
</section>
{/* WHY CUSTOM DESIGN MATTERS STATISTICS */}
{/* WHY CUSTOM DESIGN MATTERS - STATISTICS */}
<section className="py-16 bg-white">
<div className="container mx-auto max-w-4xl px-4 sm:px-6 lg:px-8">
<div className="flex items-center gap-2 mb-3">
@@ -692,27 +692,27 @@ export default function CustomQRCodeGeneratorPage() {
Why Brand Design in QR Codes Increases Engagement
</h2>
<p className="text-gray-600 mb-10 max-w-2xl">
A <strong>custom QR code</strong> with your brand colors and logo doesn't just look better it signals trust and gets scanned more often.
A <strong>custom QR code</strong> with your brand colors and logo doesn't just look better - it signals trust and gets scanned more often.
</p>
<div className="grid md:grid-cols-2 gap-6 mb-8">
<div className="bg-purple-50 border border-purple-100 rounded-2xl p-6">
<div className="text-4xl font-extrabold text-purple-600 mb-2">+80%</div>
<p className="text-gray-700 text-sm leading-relaxed mb-3">
Color increases brand recognition by up to 80%. A branded QR code using your brand colors is recognized and associated with your business faster than a generic black-and-white grid increasing scan intent.
Color increases brand recognition by up to 80%. A branded QR code using your brand colors is recognized and associated with your business faster than a generic black-and-white grid - increasing scan intent.
</p>
<p className="text-xs text-gray-500">
Source: <a href="https://www.loyola.edu/academia/marketing/insights/brand-recognition" target="_blank" rel="noopener noreferrer" className="underline hover:text-gray-700">University of Loyola Maryland</a> Color &amp; Brand Recognition Study
Source: <a href="https://www.loyola.edu/academia/marketing/insights/brand-recognition" target="_blank" rel="noopener noreferrer" className="underline hover:text-gray-700">University of Loyola Maryland</a> - Color &amp; Brand Recognition Study
</p>
</div>
<div className="bg-blue-50 border border-blue-100 rounded-2xl p-6">
<div className="text-4xl font-extrabold text-blue-600 mb-2">+40%</div>
<p className="text-gray-700 text-sm leading-relaxed mb-3">
Adding a recognizable brand element like a logo to a functional graphic increases user engagement and trust. Familiar visual cues reduce hesitation and increase the likelihood of scanning.
Adding a recognizable brand element - like a logo - to a functional graphic increases user engagement and trust. Familiar visual cues reduce hesitation and increase the likelihood of scanning.
</p>
<p className="text-xs text-gray-500">
Source: <a href="https://www.nngroup.com/articles/visual-design-trust/" target="_blank" rel="noopener noreferrer" className="underline hover:text-gray-700">Nielsen Norman Group</a> Visual Design and Trust Research
Source: <a href="https://www.nngroup.com/articles/visual-design-trust/" target="_blank" rel="noopener noreferrer" className="underline hover:text-gray-700">Nielsen Norman Group</a> - Visual Design and Trust Research
</p>
</div>
</div>

View File

@@ -1,4 +1,4 @@
import { getAggregateRating } from '@/lib/testimonial-data';
import { getAggregateRating } from '@/lib/testimonial-data';
import React from 'react';
import type { Metadata } from 'next';
import { Button } from '@/components/ui/Button';
@@ -16,7 +16,7 @@ import {
export const metadata: Metadata = {
title: {
absolute: 'Dynamic Barcode Generator Trackable, Editable Barcodes',
absolute: 'Dynamic Barcode Generator - Trackable, Editable Barcodes',
},
description:
'Generate dynamic barcodes you can update after printing. Change the redirect URL anytime, track every scan, and manage all barcodes in one dashboard. Free to start.',
@@ -30,17 +30,17 @@ export const metadata: Metadata = {
},
},
openGraph: {
title: 'Dynamic Barcode Generator Trackable, Editable Barcodes',
title: 'Dynamic Barcode Generator - Trackable, Editable Barcodes',
description:
'Generate dynamic barcodes that redirect to any URL and can be updated after printing. Track every scan with device, time, and location data.',
'Generate dynamic barcodes that redirect to any URL - and can be updated after printing. Track every scan with device, time, and location data.',
url: 'https://www.qrmaster.net/dynamic-barcode-generator',
type: 'website',
images: ['/og-image.png'],
},
twitter: {
title: 'Dynamic Barcode Generator Trackable, Editable Barcodes',
title: 'Dynamic Barcode Generator - Trackable, Editable Barcodes',
description:
'Generate dynamic barcodes that redirect to any URL and can be updated after printing. Track every scan with device, time, and location data.',
'Generate dynamic barcodes that redirect to any URL - and can be updated after printing. Track every scan with device, time, and location data.',
},
};
@@ -53,7 +53,7 @@ const featureCards = [
{
title: 'Track every smartphone scan',
description:
'See device type, time, country, and referrer for every scan in the same dashboard as your QR codes.',
'See device type, time, country, and referrer for every scan - in the same dashboard as your QR codes.',
},
{
title: 'CODE128 and CODE39 supported',
@@ -111,28 +111,28 @@ const useCases = [
description:
'Print CODE128 barcodes on event badges that link to personalized schedules, session recordings, or attendee portals. Update the destination as content changes.',
example:
'Conference badges with a dynamic barcode redirect to an attendee agenda page updated in real time as the schedule changes. Scanned with smartphone cameras at check-in kiosks.',
'Conference badges with a dynamic barcode redirect to an attendee agenda page - updated in real time as the schedule changes. Scanned with smartphone cameras at check-in kiosks.',
},
{
title: 'Packaging inserts & product cards',
description:
'Link physical inserts inside product boxes to setup guides, how-to videos, or support pages. Update the destination when content moves no reprint needed.',
'Link physical inserts inside product boxes to setup guides, how-to videos, or support pages. Update the destination when content moves - no reprint needed.',
example:
'A hardware brand updates the setup guide URL six months post-launch to a new video format without reprinting a single insert.',
'A hardware brand updates the setup guide URL six months post-launch to a new video format - without reprinting a single insert.',
},
{
title: 'Digital signage & screens',
description:
'Display a CODE128 barcode on screens or monitors. Visitors scan with their smartphone and land on a current URL updated from the dashboard without changing the display.',
'Display a CODE128 barcode on screens or monitors. Visitors scan with their smartphone and land on a current URL - updated from the dashboard without changing the display.',
example:
'A trade-show monitor shows a barcode linking to the current product demo page redirected to a post-show recording after the event.',
'A trade-show monitor shows a barcode linking to the current product demo page - redirected to a post-show recording after the event.',
},
{
title: 'Internal asset tracking (browser-based)',
description:
'Use CODE128 barcodes on internal assets where staff scan with smartphones to open web-based inventory or maintenance forms. URLs update as systems change.',
example:
'IT tags company laptops with dynamic barcodes. Staff scan to open the current helpdesk form URL updated when the ticketing system moves.',
'IT tags company laptops with dynamic barcodes. Staff scan to open the current helpdesk form - URL updated when the ticketing system moves.',
},
];
@@ -140,12 +140,12 @@ const faqItems = [
{
question: 'What is a dynamic barcode?',
answer:
'A dynamic barcode (CODE128 or CODE39) encodes a short redirect URL. When scanned with a smartphone camera, it opens a browser and routes through QR Master to your current destination which you can update without changing the printed barcode. Note: it requires a smartphone scan, not a POS laser scanner.',
'A dynamic barcode (CODE128 or CODE39) encodes a short redirect URL. When scanned with a smartphone camera, it opens a browser and routes through QR Master to your current destination - which you can update without changing the printed barcode. Note: it requires a smartphone scan, not a POS laser scanner.',
},
{
question: 'How is a dynamic barcode different from a static one?',
answer:
'A static barcode directly encodes a fixed value a number, URL, or product code that cannot be changed after printing. A dynamic barcode encodes a redirect link so the final destination can be updated at any time from your dashboard.',
'A static barcode directly encodes a fixed value - a number, URL, or product code - that cannot be changed after printing. A dynamic barcode encodes a redirect link so the final destination can be updated at any time from your dashboard.',
},
{
question:
@@ -166,7 +166,7 @@ const faqItems = [
{
question: 'Can I change a barcode destination after printing?',
answer:
'Yes that is the core value of a dynamic barcode. Log in to your dashboard, find the barcode, and update the redirect URL. Scanners immediately reach the new destination.',
'Yes - that is the core value of a dynamic barcode. Log in to your dashboard, find the barcode, and update the redirect URL. Scanners immediately reach the new destination.',
},
{
question: 'Do I need to reprint if the linked page changes?',
@@ -186,13 +186,13 @@ const softwareSchema = {
'@type': 'SoftwareApplication',
'@id': 'https://www.qrmaster.net/dynamic-barcode-generator#software',
name: 'QR Master - Dynamic Barcode Generator',
applicationCategory: 'BusinessApplication',
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: getAggregateRating().ratingValue,
reviewCount: getAggregateRating().reviewCount,
bestRating: getAggregateRating().bestRating,
worstRating: getAggregateRating().worstRating,
applicationCategory: 'BusinessApplication',
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: getAggregateRating().ratingValue,
reviewCount: getAggregateRating().reviewCount,
bestRating: getAggregateRating().bestRating,
worstRating: getAggregateRating().worstRating,
},
operatingSystem: 'Web Browser',
offers: {
@@ -225,7 +225,7 @@ const howToSchema = {
url: 'https://www.qrmaster.net/authors/timo',
},
description:
'Create a dynamic barcode that redirects to a URL you can update anytime without reprinting the label.',
'Create a dynamic barcode that redirects to a URL you can update anytime - without reprinting the label.',
totalTime: 'PT3M',
step: [
{
@@ -252,7 +252,7 @@ const howToSchema = {
'@type': 'HowToStep',
position: 4,
name: 'Update anytime',
text: 'Change the destination URL from your dashboard whenever needed no reprint required.',
text: 'Change the destination URL from your dashboard whenever needed - no reprint required.',
},
],
};
@@ -281,14 +281,14 @@ const relatedLinks = [
href: '/dynamic-qr-code-generator',
title: 'Dynamic QR Code Generator',
description:
'The same redirect-and-track approach for 2D QR codes ideal for consumer-facing print materials scanned by smartphones.',
'The same redirect-and-track approach for 2D QR codes - ideal for consumer-facing print materials scanned by smartphones.',
ctaLabel: 'Create dynamic QR codes',
},
{
href: '/bulk-qr-code-generator',
title: 'Bulk Barcode & QR Generator',
description:
'Upload a CSV and generate hundreds of dynamic barcodes or QR codes in one batch with tracking for every code.',
'Upload a CSV and generate hundreds of dynamic barcodes or QR codes in one batch - with tracking for every code.',
ctaLabel: 'Generate codes in bulk',
},
{
@@ -316,7 +316,7 @@ const relatedLinks = [
href: '/tools/barcode-generator',
title: 'Free Static Barcode Generator',
description:
'Need a one-time barcode with no redirect? Use the free static barcode generator no account required.',
'Need a one-time barcode with no redirect? Use the free static barcode generator - no account required.',
ctaLabel: 'Generate a static barcode',
},
];
@@ -454,17 +454,17 @@ export default function DynamicBarcodeGeneratorPage() {
<p className="text-[18px] font-[300] leading-[1.6] text-black max-w-lg">
Create CODE128 or CODE39 barcodes that encode a redirect
URL. When scanned with a smartphone, they open a browser and
redirect to your destination which you can update anytime
redirect to your destination - which you can update anytime
without reprinting.
</p>
</div>
<div className="space-y-4 pt-2">
{[
'Scanned by smartphone cameras redirect opens in the browser',
'Scanned by smartphone cameras - redirect opens in the browser',
'Update the destination from your dashboard without touching the label',
'Track every scan device, country, time, and UTM data',
'Free plan includes 3 active dynamic barcodes no credit card required',
'Track every scan - device, country, time, and UTM data',
'Free plan includes 3 active dynamic barcodes - no credit card required',
].map((feature) => (
<div key={feature} className="flex items-start gap-3">
<div className="mt-1 flex h-4 w-4 flex-shrink-0 items-center justify-center rounded-full bg-[#15be53]/20 border border-[#15be53]/40">
@@ -513,7 +513,7 @@ export default function DynamicBarcodeGeneratorPage() {
</div>
</div>
{/* Hero visual barcode mockup */}
{/* Hero visual - barcode mockup */}
<div className="relative mt-8 lg:mt-0">
<div className="rounded-[8px] border border-[#e5edf5] bg-white p-8 shadow-[0_30px_45px_-30px_rgba(50,50,93,0.25),0_18px_36px_-18px_rgba(0,0,0,0.1)]">
{/* Simulated barcode SVG */}
@@ -948,7 +948,7 @@ export default function DynamicBarcodeGeneratorPage() {
How to Create a Dynamic Barcode
</h2>
<AnswerFirstBlock
whatIsIt="A dynamic barcode encodes a short redirect URL into a standard linear format (CODE128, EAN-13, etc.). When scanned, it routes through QR Master logging the scan and forwarding to your chosen destination, which you can update anytime from the dashboard."
whatIsIt="A dynamic barcode encodes a short redirect URL into a standard linear format (CODE128, EAN-13, etc.). When scanned, it routes through QR Master - logging the scan and forwarding to your chosen destination, which you can update anytime from the dashboard."
whenToUse={[
'Event badges, access passes, or conference materials scanned by smartphone cameras',
'Product packaging inserts or cards where visitors scan with their phone to reach a web page',
@@ -981,7 +981,7 @@ export default function DynamicBarcodeGeneratorPage() {
'Create a QR Master account and open the Create dashboard',
'Select "Barcode" as the content type, pick a format, and enter your destination URL',
'Download the barcode as SVG or PNG and apply it to your label or packaging',
'Update the redirect URL anytime from your dashboard no reprint required',
'Update the redirect URL anytime from your dashboard - no reprint required',
],
}}
/>
@@ -1042,7 +1042,7 @@ export default function DynamicBarcodeGeneratorPage() {
: 'text-[20px] text-[#ea2261]'
}
>
{item.static ? '✓' : ''}
{item.static ? '✓' : '-'}
</span>
</div>
))}
@@ -1066,7 +1066,7 @@ export default function DynamicBarcodeGeneratorPage() {
: 'text-[20px] text-[#ea2261]'
}
>
{item.dynamic ? '✓' : ''}
{item.dynamic ? '✓' : '-'}
</span>
</div>
))}
@@ -1085,7 +1085,7 @@ export default function DynamicBarcodeGeneratorPage() {
</h2>
<p className="mx-auto max-w-3xl text-[18px] font-[300] leading-[1.6] text-[#64748d]">
The same redirect-and-track infrastructure that powers QR
Master's dynamic QR codes now available for standard linear
Master's dynamic QR codes - now available for standard linear
barcode formats.
</p>
</div>
@@ -1177,7 +1177,7 @@ export default function DynamicBarcodeGeneratorPage() {
</h2>
<p className="text-[18px] font-[300] leading-[1.6] text-[rgba(255,255,255,0.7)]">
Static barcodes are a liability when the page or document
behind them changes. Dynamic barcodes eliminate that risk
behind them changes. Dynamic barcodes eliminate that risk -
and add scan intelligence to every label.
</p>
</div>
@@ -1243,7 +1243,7 @@ export default function DynamicBarcodeGeneratorPage() {
Which barcode format works dynamically?
</h2>
<p className="text-[18px] font-[300] leading-[1.6] text-[#64748d] max-w-2xl mx-auto">
Dynamic barcodes must encode a URL so only formats that
Dynamic barcodes must encode a URL - so only formats that
support full ASCII strings work. Numeric-only formats like
EAN-13, UPC, and ITF-14 cannot embed a redirect URL and are
available as <strong>static barcodes only</strong>.
@@ -1297,7 +1297,7 @@ export default function DynamicBarcodeGeneratorPage() {
<div>
<h3 className="text-[14px] font-[400] text-[#64748d] uppercase tracking-wider mb-6 text-center md:text-left">
Static only numeric formats
Static only - numeric formats
</h3>
<div className="grid gap-4 sm:grid-cols-2 lg:grid-cols-4">
{[
@@ -1353,7 +1353,7 @@ export default function DynamicBarcodeGeneratorPage() {
<GrowthLinksSection
eyebrow="Best next workflows"
title="See where dynamic barcodes fit your stack"
description="Dynamic barcodes work best alongside QR codes, bulk generation, and unified analytics all available in the same QR Master dashboard."
description="Dynamic barcodes work best alongside QR codes, bulk generation, and unified analytics - all available in the same QR Master dashboard."
links={relatedLinks}
pageType="commercial"
cluster="dynamic-barcode"

View File

@@ -20,7 +20,7 @@ export const metadata: Metadata = {
absolute: 'Free Dynamic QR Code Generator: Edit After Print',
},
description:
'Create dynamic QR codes with editable destinations, scan tracking, branding, and post-print updates for menus, flyers, packaging, and campaigns.',
'Print once, change the destination anytime. 3 dynamic QR codes free forever, no card. Track scans by time, device and location. For menus, flyers and packaging.',
keywords:
'dynamic qr code generator, free dynamic qr code generator, best dynamic qr code generator, editable qr code, changeable qr code, qr code tracking, update qr code after printing',
alternates: {
@@ -33,7 +33,7 @@ export const metadata: Metadata = {
openGraph: {
title: 'Dynamic QR Code Generator: Edit After Print',
description:
'Create dynamic QR codes that you can edit after printing. Change the destination URL anytime, track scans, and manage all codes in one dashboard.',
'The link does not have to stay wrong once it is printed. Change the destination in seconds, track every scan, and manage all codes in one dashboard.',
url: 'https://www.qrmaster.net/dynamic-qr-code-generator',
type: 'website',
images: ['/og-image.png'],
@@ -41,7 +41,7 @@ export const metadata: Metadata = {
twitter: {
title: 'Dynamic QR Code Generator: Edit After Print',
description:
'Create dynamic QR codes that you can edit after printing. Change the destination URL anytime, track scans, and manage all codes in one dashboard.',
'The link does not have to stay wrong once it is printed. Change the destination in seconds, track every scan, and manage all codes in one dashboard.',
},
};
@@ -140,7 +140,7 @@ const useCases = [
description:
'Print event QR codes in advance and update the destination if the venue, schedule, or session link changes before or during the event.',
example:
'Redirect all printed badges to a new venue map URL the morning of the event no reprint, no confusion.',
'Redirect all printed badges to a new venue map URL the morning of the event - no reprint, no confusion.',
},
];
@@ -148,12 +148,12 @@ const faqItems = [
{
question: 'What is a dynamic QR code generator?',
answer:
'A dynamic QR code generator creates QR codes that route through a managed redirect link instead of encoding the destination directly. That redirect makes it possible to change the final destination after printing unlike static QR codes, which permanently encode the URL into the image at creation time.',
'A dynamic QR code generator creates QR codes that route through a managed redirect link instead of encoding the destination directly. That redirect makes it possible to change the final destination after printing - unlike static QR codes, which permanently encode the URL into the image at creation time.',
},
{
question: 'Can I edit a dynamic QR code after printing?',
answer:
'Yes that is the core benefit. You keep the same printed QR image and update the destination URL from your QR Master dashboard at any time. Use it to change a campaign landing page, fix a typo in a URL, or point existing printed materials to a new offer without reprinting a single page.',
'Yes - that is the core benefit. You keep the same printed QR image and update the destination URL from your QR Master dashboard at any time. Use it to change a campaign landing page, fix a typo in a URL, or point existing printed materials to a new offer without reprinting a single page.',
},
{
question: 'How many times can I scan a dynamic QR code?',
@@ -163,12 +163,12 @@ const faqItems = [
{
question: 'Do dynamic QR codes expire?',
answer:
'Some free tools put expiry dates on dynamic QR codes. QR Master does not. Free plan codes stay active as long as the account is active (up to 3 dynamic codes). Pro and Business plan codes have no expiry at all they remain scannable and editable indefinitely.',
'Some free tools put expiry dates on dynamic QR codes. QR Master does not. Free plan codes stay active as long as the account is active (up to 3 dynamic codes). Pro and Business plan codes have no expiry at all - they remain scannable and editable indefinitely.',
},
{
question: "What's the difference between static and dynamic QR codes?",
answer:
'Static QR codes permanently encode the destination into the image they are cheap to generate but cannot be changed or tracked after printing. Dynamic QR codes route through a redirect layer: the destination can be updated at any time, every scan is logged with device, time, and location context, and the same printed code can serve multiple campaigns over its lifetime.',
'Static QR codes permanently encode the destination into the image - they are cheap to generate but cannot be changed or tracked after printing. Dynamic QR codes route through a redirect layer: the destination can be updated at any time, every scan is logged with device, time, and location context, and the same printed code can serve multiple campaigns over its lifetime.',
},
{
question: 'How do I track scans on a dynamic QR code?',
@@ -183,12 +183,12 @@ const faqItems = [
{
question: 'Is a dynamic QR code free?',
answer:
'Yes the Free plan includes 3 active dynamic QR codes at no cost. No credit card required to get started.',
'Yes - the Free plan includes 3 active dynamic QR codes at no cost. No credit card required to get started.',
},
{
question: 'How do I convert a static QR code to a dynamic one?',
answer:
'You cannot convert an existing static QR code the data is permanently encoded in the image. To switch to dynamic, create a new dynamic QR code in QR Master and replace the printed code.',
'You cannot convert an existing static QR code - the data is permanently encoded in the image. To switch to dynamic, create a new dynamic QR code in QR Master and replace the printed code.',
},
{
question: 'What is the best use case for a dynamic QR code?',
@@ -203,7 +203,7 @@ const servicesComparison = [
href: 'https://www.qrmaster.net',
freePlan: '3 active dynamic codes (permanent)',
paidFrom: 'EUR 9/month (Pro)',
gdpr: 'Built-in hashed IPs, all plans',
gdpr: 'Built-in - hashed IPs, all plans',
analytics: 'All plans',
bulk: 'Up to 1,000 static codes (Business, EUR 29/mo)',
bestFor: 'SMBs and EU businesses',
@@ -213,7 +213,7 @@ const servicesComparison = [
service: 'Beaconstac / Uniqode',
href: 'https://www.uniqode.com',
freePlan: 'None',
paidFrom: '$4999/month (functional tier)',
paidFrom: '$49-99/month (functional tier)',
gdpr: 'Via DPA configuration',
analytics: 'Paid plans',
bulk: 'Enterprise tier only',
@@ -494,7 +494,7 @@ export default function DynamicQRCodeGeneratorPage() {
<p className="text-xl leading-relaxed text-gray-600">
A wrong link on printed material usually means a reprint.
With a dynamic QR code, you fix the destination online in
seconds the printed flyer, menu, or card never has to
seconds - the printed flyer, menu, or card never has to
change.
</p>
</div>
@@ -1071,7 +1071,7 @@ export default function DynamicQRCodeGeneratorPage() {
after it has been created and printed. Instead of encoding the
final URL directly into the image, a dynamic QR code contains a
short managed redirect link. When someone scans the code, the
redirect sends them to whatever destination is currently set
redirect sends them to whatever destination is currently set -
which means you can update the link, fix a typo, or point the
same printed code at a new campaign at any time, without
reprinting anything.
@@ -1081,7 +1081,7 @@ export default function DynamicQRCodeGeneratorPage() {
codes can also be tracked: each scan is logged with its time,
device type, and approximate location, so printed materials
become measurable instead of invisible. Static QR codes offer
neither of these capabilities the destination is permanently
neither of these capabilities - the destination is permanently
baked into the image and no scan data is recorded.
</p>
</div>
@@ -1312,7 +1312,7 @@ export default function DynamicQRCodeGeneratorPage() {
</div>
</section>
{/* WHY DYNAMIC QR STATISTICS */}
{/* WHY DYNAMIC QR - STATISTICS */}
<section className="bg-white py-16">
<div className="container mx-auto max-w-4xl px-4 sm:px-6 lg:px-8">
<div className="flex items-center gap-2 mb-3">
@@ -1337,8 +1337,8 @@ export default function DynamicQRCodeGeneratorPage() {
Why Dynamic QR Codes Deliver Better Business Outcomes
</h2>
<p className="text-gray-600 mb-10 max-w-2xl">
The ability to update destinations after printing and track
every scan transforms a static print asset into a measurable
The ability to update destinations after printing - and track
every scan - transforms a static print asset into a measurable
marketing channel.
</p>
@@ -1348,8 +1348,8 @@ export default function DynamicQRCodeGeneratorPage() {
89% vs 33%
</div>
<p className="text-gray-700 text-sm leading-relaxed mb-3">
Companies with strong omnichannel customer engagement
enabled by closed-loop tracking from offline to online
Companies with strong omnichannel customer engagement -
enabled by closed-loop tracking from offline to online -
retain <strong>89% of their customers</strong>, compared to
only 33% for companies with weak omnichannel engagement.
</p>
@@ -1363,7 +1363,7 @@ export default function DynamicQRCodeGeneratorPage() {
>
Aberdeen Group
</a>{' '}
Omnichannel Customer Engagement Study
- Omnichannel Customer Engagement Study
</p>
</div>
@@ -1375,7 +1375,7 @@ export default function DynamicQRCodeGeneratorPage() {
of small businesses report printing and direct mail errors as
a major source of wasted marketing budget. Dynamic QR codes
address the part of that risk caused by a changed
destination update the link online instead of reprinting.
destination - update the link online instead of reprinting.
</p>
<p className="text-xs text-gray-500">
Source:{' '}
@@ -1398,7 +1398,7 @@ export default function DynamicQRCodeGeneratorPage() {
</div>
</section>
{/* SERVICES COMPARISON targets "what services offer dynamic QR codes?" AI query */}
{/* SERVICES COMPARISON - targets "what services offer dynamic QR codes?" AI query */}
<section className="bg-gray-50 py-16">
<div className="container mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<div className="mb-3 flex items-center gap-2">
@@ -1410,8 +1410,8 @@ export default function DynamicQRCodeGeneratorPage() {
Which services offer dynamic QR codes?
</h2>
<p className="text-gray-600 mb-8 max-w-2xl">
Dynamic QR codes where the destination URL can be changed after
printing are offered by several platforms. Here is how they
Dynamic QR codes - where the destination URL can be changed after
printing - are offered by several platforms. Here is how they
compare on price, privacy, and use case fit.
</p>

View File

@@ -14,7 +14,7 @@ function truncateAtWord(text: string, maxLength: number): string {
}
export async function generateMetadata(): Promise<Metadata> {
const title = truncateAtWord('QR Code FAQ Common Questions Answered | QR Master', 60);
const title = truncateAtWord('QR Code FAQ - Common Questions Answered | QR Master', 60);
const description = truncateAtWord(
'Quick answers to common QR code questions: Do QR codes expire? Static vs dynamic? Can they be scanned through laminate? Get clear answers.',
160
@@ -61,12 +61,12 @@ const faqs: FAQItemWithRichText[] = [
{
question: 'Do QR codes expire?',
answer:
'Static QR codes never expire the destination is permanently encoded in the image and works indefinitely. Dynamic QR codes remain active as long as your subscription is active. QR Master keeps static QR codes functional forever, including on the free plan.',
'Static QR codes never expire - the destination is permanently encoded in the image and works indefinitely. Dynamic QR codes remain active as long as your subscription is active. QR Master keeps static QR codes functional forever, including on the free plan.',
},
{
question: 'Will QR codes become obsolete?',
answer:
'QR codes are unlikely to become obsolete in the near future. Adoption has accelerated since 2020 Statista reports that QR code usage grew by over 750% between 2018 and 2023. Every major smartphone camera app now natively reads QR codes without a separate app, removing the main adoption barrier.',
'QR codes are unlikely to become obsolete in the near future. Adoption has accelerated since 2020 - Statista reports that QR code usage grew by over 750% between 2018 and 2023. Every major smartphone camera app now natively reads QR codes without a separate app, removing the main adoption barrier.',
},
{
question: 'Will QR codes replace barcodes?',
@@ -81,7 +81,7 @@ const faqs: FAQItemWithRichText[] = [
{
question: 'Do QR codes work with a cracked phone screen?',
answer:
'Usually yes, as long as the camera can still capture the QR code image. Minor cracks often do not prevent scanning. A heavily cracked screen that distorts the camera view may cause scanning failures. The QR code itself is not affected only the device reading it matters.',
'Usually yes, as long as the camera can still capture the QR code image. Minor cracks often do not prevent scanning. A heavily cracked screen that distorts the camera view may cause scanning failures. The QR code itself is not affected - only the device reading it matters.',
},
{
question: 'When were QR codes invented?',
@@ -91,7 +91,7 @@ const faqs: FAQItemWithRichText[] = [
{
question: 'Can QR codes run out?',
answer:
'No QR codes cannot run out. The QR code standard supports approximately 10^9 unique combinations for a typical URL, far more than could ever be used. Generating a new QR code does not "use up" anything from a shared pool. Each code is generated independently.',
'No - QR codes cannot run out. The QR code standard supports approximately 10^9 unique combinations for a typical URL, far more than could ever be used. Generating a new QR code does not "use up" anything from a shared pool. Each code is generated independently.',
},
{
question: 'What is a dynamic QR code?',
@@ -155,7 +155,7 @@ const faqs: FAQItemWithRichText[] = [
{
question: 'How does bulk QR creation work today?',
answer:
'QR Master currently supports bulk QR creation through spreadsheet upload in the Business plan. The flow accepts CSV, XLS, and XLSX files, supports up to 1,000 rows per upload, and generates static QR codes.',
'QR Master supports bulk QR creation through spreadsheet upload in the Business plan. The flow accepts CSV, XLS, and XLSX files and handles up to 1,000 rows per upload. You choose static or dynamic output per upload; dynamic is capped at 500 by the Business dynamic code allowance.',
answerRich: (
<>
QR Master currently supports bulk QR creation through spreadsheet upload in the Business plan.

View File

@@ -80,9 +80,12 @@ export function generateMetadata({ params }: PageProps): Metadata {
follow: true,
},
icons: {
icon: [{ url: "/favicon1.png", type: "image/png" }],
shortcut: "/favicon1.png",
apple: "/favicon1.png",
icon: [
{ url: "/favicon.svg", type: "image/svg+xml" },
{ url: "/favicon.ico", sizes: "16x16 32x32", type: "image/x-icon" },
],
shortcut: "/favicon.ico",
apple: "/logo.svg",
},
openGraph: {
title,

View File

@@ -1,15 +1,15 @@
import type { Metadata } from 'next';
import '@/styles/globals.css';
import MarketingLayout from './MarketingLayout';
// Import schema functions from library
import { organizationSchema } from '@/lib/schema';
import type { Metadata } from 'next';
import '@/styles/globals.css';
import MarketingLayout from './MarketingLayout';
// Import schema functions from library
import { organizationSchema } from '@/lib/schema';
const isIndexable = process.env.NEXT_PUBLIC_INDEXABLE === 'true';
export const metadata: Metadata = {
metadataBase: new URL('https://www.qrmaster.net'),
title: {
default: 'QR Master Smart QR Generator & Analytics',
default: 'QR Master - Smart QR Generator & Analytics',
template: '%s | QR Master',
},
description: 'Create dynamic QR codes, track scans, and scale campaigns with secure analytics.',
@@ -17,14 +17,14 @@ export const metadata: Metadata = {
robots: isIndexable
? { index: true, follow: true }
: { index: false, follow: false },
icons: {
icon: [
{ url: '/favicon.svg', type: 'image/svg+xml' },
{ url: '/favicon.ico', sizes: '16x16 32x32', type: 'image/x-icon' },
],
shortcut: '/favicon.ico',
apple: '/logo.svg',
},
icons: {
icon: [
{ url: '/favicon.svg', type: 'image/svg+xml' },
{ url: '/favicon.ico', sizes: '16x16 32x32', type: 'image/x-icon' },
],
shortcut: '/favicon.ico',
apple: '/logo.svg',
},
twitter: {
card: 'summary_large_image',
site: '@qrmaster',
@@ -33,7 +33,7 @@ export const metadata: Metadata = {
openGraph: {
type: 'website',
siteName: 'QR Master',
title: 'QR Master Smart QR Generator & Analytics',
title: 'QR Master - Smart QR Generator & Analytics',
description: 'Create dynamic QR codes, track scans, and scale campaigns with secure analytics.',
images: [
{
@@ -52,20 +52,20 @@ export const metadata: Metadata = {
},
};
export default function MarketingGroupLayout({
children,
}: {
children: React.ReactNode;
}) {
export default function MarketingGroupLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(organizationSchema()) }}
/>
<MarketingLayout>
{children}
</MarketingLayout>
</>
);
}
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(organizationSchema()) }}
/>
<MarketingLayout>
{children}
</MarketingLayout>
</>
);
}

View File

@@ -3,8 +3,8 @@ import { pillarMeta } from "@/lib/pillar-data";
import { getPublishedPosts } from "@/lib/content";
export const metadata = {
title: "QR Mastery: Free QR Code Guides & Tutorials",
description: "QR Mastery is the free learning hub by QR Master: step-by-step guides to create, track, and optimize dynamic QR codes. No account needed to start.",
title: "QR Mastery - Guides on Tracking, Print Size & Providers",
description: "Free guides on the things that go wrong: dead links after printing, scans you cannot attribute, codes too small to read, and providers that switch codes off. No account.",
alternates: {
canonical: "https://www.qrmaster.net/learn",
},
@@ -27,7 +27,7 @@ export default function LearnHubPage() {
<header className="space-y-4 max-w-3xl">
<h1 className="text-4xl md:text-5xl font-extrabold text-gray-900 tracking-tight">QR Mastery: The QR Code Knowledge Hub</h1>
<p className="text-xl text-gray-600">
Master the art of QR codes. Explore our expert guides on generation, tracking, security, and marketing strategies all free, no account needed.
Master the art of QR codes. Explore our expert guides on generation, tracking, security, and marketing strategies - all free, no account needed.
</p>
<p className="text-gray-600">
Ready to put it into practice? Create an editable code with the{" "}

View File

@@ -813,9 +813,9 @@ export default function NewsletterClient() {
<TableBody>
{data.segments.rows.map((row) => (
<TableRow key={row.id}>
<TableCell>{row.name || ''}</TableCell>
<TableCell>{row.name || '-'}</TableCell>
<TableCell>{row.email}</TableCell>
<TableCell>{row.emailDomain || ''}</TableCell>
<TableCell>{row.emailDomain || '-'}</TableCell>
<TableCell>{row.plan}</TableCell>
<TableCell>{row.lifecycleStageLabel}</TableCell>
<TableCell>{row.fitScore}</TableCell>
@@ -823,16 +823,16 @@ export default function NewsletterClient() {
<TableCell>{row.leadScore}</TableCell>
<TableCell>{row.signupSourceLabel}</TableCell>
<TableCell>{row.signupSourceSelfReportedLabel}</TableCell>
<TableCell>{row.signupCampaign || ''}</TableCell>
<TableCell>{row.signupLandingPath || ''}</TableCell>
<TableCell>{row.signupCampaign || '-'}</TableCell>
<TableCell>{row.signupLandingPath || '-'}</TableCell>
<TableCell>{row.primaryUseCaseLabel}</TableCell>
<TableCell>{row.primaryGoalLabel}</TableCell>
<TableCell>{row.jobRoleLabel}</TableCell>
<TableCell>{row.companyName || ''}</TableCell>
<TableCell>{row.companyName || '-'}</TableCell>
<TableCell>{row.teamSizeLabel}</TableCell>
<TableCell>{new Date(row.createdAt).toLocaleDateString()}</TableCell>
<TableCell>{row.firstQrCreatedAt ? new Date(row.firstQrCreatedAt).toLocaleDateString() : ''}</TableCell>
<TableCell>{row.activationAt ? new Date(row.activationAt).toLocaleDateString() : ''}</TableCell>
<TableCell>{row.firstQrCreatedAt ? new Date(row.firstQrCreatedAt).toLocaleDateString() : '-'}</TableCell>
<TableCell>{row.activationAt ? new Date(row.activationAt).toLocaleDateString() : '-'}</TableCell>
<TableCell>{row.qrCount}</TableCell>
<TableCell>{row.dynamicQrCount}</TableCell>
<TableCell>{row.scanCount}</TableCell>
@@ -888,7 +888,7 @@ export default function NewsletterClient() {
<TableCell>{row.leadScore}</TableCell>
<TableCell>{getUseCaseLabel(row.primaryUseCase)}</TableCell>
<TableCell>{getRoleLabel(row.jobRole)}</TableCell>
<TableCell>{row.companyName || ''}</TableCell>
<TableCell>{row.companyName || '-'}</TableCell>
<TableCell>
<div className="flex flex-wrap gap-2">
{row.upgradeBadges.map((badge) => (

View File

@@ -17,10 +17,10 @@ function truncateAtWord(text: string, maxLength: number): string {
export async function generateMetadata(): Promise<Metadata> {
const description = truncateAtWord(
'QR Master is a free dynamic QR code generator with tracking, editable destinations, custom branding, and bulk QR creation. Create static QR codes without signup.',
'Change where a printed QR code points - without reprinting it. 3 dynamic codes free forever, unlimited static codes that never expire, scan tracking. No card.',
160
);
const brandTitle = 'QR Master - Free Dynamic QR Code Generator with Tracking';
const brandTitle = 'QR Master - Free QR Code Generator, Editable After Print';
return {
title: brandTitle,
@@ -90,7 +90,7 @@ export default function HomePage() {
</p>
<p>
Features include: Dynamic QR codes with real-time tracking, bulk QR
code generation from Excel/CSV, custom branding with colors and logos,
code generation from Excel/CSV, free colour control on every plan,
advanced scan analytics showing device types and locations, vCard QR
codes for digital business cards, restaurant menu QR codes, and a free{' '}
<a href="/tools/barcode-generator">barcode generator</a> for EAN-13,

View File

@@ -145,10 +145,10 @@ export default function PricingPage() {
`${FREE_DYNAMIC_QR_LIMIT} active dynamic QR codes (8 types available)`,
'Unlimited static QR codes',
'Basic scan tracking',
'Standard QR design templates',
'Your colors - foreground and background, free',
'Download as SVG/PNG',
],
caption: 'Good for proving the mechanism on 13 placements.',
caption: 'Good for proving the mechanism on 1-3 placements.',
buttonText: currentPlan === 'FREE' ? 'Current Plan' : 'Cancel paid plan',
buttonVariant: 'outline' as const,
disabled: currentPlan === 'FREE',
@@ -162,10 +162,10 @@ export default function PricingPage() {
period: billingPeriod === 'month' ? 'per month' : 'per year',
showDiscount: billingPeriod === 'year',
features: [
'50 dynamic QR codes enough for a full campaign, or several at once',
'50 dynamic QR codes - enough for a full campaign, or several at once',
'Compare scans by device and location, not just a running total',
'Unlimited static QR codes',
'Custom branding (colors & logos)',
'4 module shapes, custom eye styles and your logo',
],
buttonText: isCurrentPlanWithInterval('PRO', selectedInterval)
? 'Current Plan'
@@ -187,7 +187,9 @@ export default function PricingPage() {
'500 dynamic QR codes',
'Unlimited static QR codes',
'Everything from Pro',
'Bulk QR Creation (up to 1,000, static output)',
'Full designer: 11 module shapes and colour gradients',
'Saved design presets, applied to a whole bulk upload',
'Bulk QR Creation (1,000 static or 500 dynamic)',
'Priority email support',
'Advanced tracking & insights',
],
@@ -229,8 +231,8 @@ export default function PricingPage() {
</h1>
<p className="text-xl text-gray-600">
Every plan includes unlimited static codes that never expire. Pick
based on how many active placements you&apos;re tracking right now
not how many you might need someday and upgrade in seconds if
based on how many active placements you&apos;re tracking right now -
not how many you might need someday - and upgrade in seconds if
that changes.
</p>
</div>

View File

@@ -56,7 +56,7 @@ const faqItems = [
{
question: 'Which plan includes bulk QR creation?',
answer:
'Bulk QR creation is included in the Business plan. Bulk-created codes are static output, not dynamic or trackable.',
'Bulk QR creation is included in the Business plan. You choose static or dynamic per upload: up to 1,000 static codes, or up to 500 dynamic ones, limited by the Business dynamic code allowance.',
},
{
question: 'Which plans include analytics and branding?',
@@ -116,7 +116,7 @@ export default function PricingPage() {
Compare free QR generators with paid dynamic QR workflows before
choosing a plan. The difference usually comes down to how many
placements you&apos;re running at once, and whether you need to
compare them not just the number of codes.
compare them - not just the number of codes.
</p>
<Link
href="/compare/free-vs-paid-qr-code-generator"

View File

@@ -1,4 +1,4 @@
import { getAggregateRating } from '@/lib/testimonial-data';
import { getAggregateRating } from '@/lib/testimonial-data';
import type { Metadata } from 'next';
import {
@@ -19,13 +19,13 @@ const softwareSchema = {
'@type': 'SoftwareApplication',
'@id': 'https://www.qrmaster.net/qr-code-analytics#software',
name: 'QR Master - QR Code Analytics',
applicationCategory: 'BusinessApplication',
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: getAggregateRating().ratingValue,
reviewCount: getAggregateRating().reviewCount,
bestRating: getAggregateRating().bestRating,
worstRating: getAggregateRating().worstRating,
applicationCategory: 'BusinessApplication',
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: getAggregateRating().ratingValue,
reviewCount: getAggregateRating().reviewCount,
bestRating: getAggregateRating().bestRating,
worstRating: getAggregateRating().worstRating,
},
operatingSystem: 'Web Browser',
offers: {
@@ -195,7 +195,7 @@ export default function QRCodeAnalyticsPage() {
href: '/dynamic-qr-code-generator',
title: 'Dynamic QR Code Generator',
description:
'Create QR codes with updatable destinations so analytics can inform what to change without reprinting.',
'Create QR codes with updatable destinations so analytics can inform what to change - without reprinting.',
ctaLabel: 'Create dynamic QR code',
},
{

View File

@@ -18,7 +18,7 @@ export default function QRCodeForMarketingCampaignsPage() {
title="Your client asks which flyer worked. You hand them a scan count."
description="Plan QR codes for marketing campaigns around placement tracking, changing destinations, and offline-to-online attribution."
eyebrow="Campaign Workflows"
intro="A scan count isn't attribution it's a number with no context. Here's how to actually answer the question."
intro="A scan count isn't attribution - it's a number with no context. Here's how to actually answer the question."
pageType="commercial"
cluster="marketing-campaigns"
useCase="marketing-campaigns"
@@ -30,7 +30,7 @@ export default function QRCodeForMarketingCampaignsPage() {
},
]}
answer="A campaign QR code should do more than open a page. It should help you compare placements, update the destination when the offer changes, and route offline traffic into a measurable funnel."
directAnswer="A scan count is not attribution. It tells you a scan happened not which placement, which creative, or which channel earned it, and not what happened after the scan. That's still GA4's job, or your CRM's. What a QR code can actually do is make that handoff clean: one code per placement, a destination you can still edit after print, and scan data you can compare across placements instead of one running total."
directAnswer="A scan count is not attribution. It tells you a scan happened - not which placement, which creative, or which channel earned it, and not what happened after the scan. That's still GA4's job, or your CRM's. What a QR code can actually do is make that handoff clean: one code per placement, a destination you can still edit after print, and scan data you can compare across placements instead of one running total."
authoritySignals={[
"One code per placement",
"Editable after print",

View File

@@ -14,7 +14,7 @@ export const metadata: Metadata = {
},
openGraph: {
title: 'QR Code Print Size Guide | QR Master',
description: 'Exact QR code dimensions for every print surface from business cards to billboards.',
description: 'Exact QR code dimensions for every print surface - from business cards to billboards.',
type: 'article',
url: 'https://www.qrmaster.net/qr-code-print-size-guide',
},
@@ -59,7 +59,7 @@ const faqSchema = {
name: 'What is the minimum size for a QR code to be scannable?',
acceptedAnswer: {
'@type': 'Answer',
text: 'The minimum recommended size is 2 × 2 cm (0.8 × 0.8 in) for QR codes scanned at very close range (under 10 cm), such as on business cards. For most print materials scanned at arm\'s length (3040 cm), use at least 3 × 3 cm.',
text: 'The minimum recommended size is 2 × 2 cm (0.8 × 0.8 in) for QR codes scanned at very close range (under 10 cm), such as on business cards. For most print materials scanned at arm\'s length (30-40 cm), use at least 3 × 3 cm.',
},
},
{
@@ -67,7 +67,7 @@ const faqSchema = {
name: 'What DPI should I use for printing a QR code?',
acceptedAnswer: {
'@type': 'Answer',
text: 'For print, export your QR code at a minimum of 300 DPI. For large-format printing (posters, banners), use the vector SVG format instead of PNG SVG scales to any size without quality loss.',
text: 'For print, export your QR code at a minimum of 300 DPI. For large-format printing (posters, banners), use the vector SVG format instead of PNG - SVG scales to any size without quality loss.',
},
},
{
@@ -75,7 +75,7 @@ const faqSchema = {
name: 'How big should a QR code be on a poster?',
acceptedAnswer: {
'@type': 'Answer',
text: 'For an A2 poster (420 × 594 mm) viewed at 12 metres, use a QR code that is at least 8 × 8 cm. Larger is always better a 10 × 10 cm code scans reliably from 23 metres away.',
text: 'For an A2 poster (420 × 594 mm) viewed at 1-2 metres, use a QR code that is at least 8 × 8 cm. Larger is always better - a 10 × 10 cm code scans reliably from 2-3 metres away.',
},
},
{
@@ -83,7 +83,7 @@ const faqSchema = {
name: 'How big should a QR code be on a business card?',
acceptedAnswer: {
'@type': 'Answer',
text: 'On a standard business card (85 × 55 mm), a QR code of 2 × 2 cm to 2.5 × 2.5 cm works reliably when held at normal reading distance (1520 cm).',
text: 'On a standard business card (85 × 55 mm), a QR code of 2 × 2 cm to 2.5 × 2.5 cm works reliably when held at normal reading distance (15-20 cm).',
},
},
{
@@ -98,12 +98,12 @@ const faqSchema = {
};
const sizeData = [
{ surface: 'Business Card', scanDistance: '1520 cm', minSize: '2 × 2 cm', recommended: '2.5 × 2.5 cm', dpi: '300 DPI PNG', format: 'PNG or SVG' },
{ surface: 'Flyer / Leaflet', scanDistance: '2030 cm', minSize: '3 × 3 cm', recommended: '4 × 4 cm', dpi: '300 DPI PNG', format: 'PNG or SVG' },
{ surface: 'A4 Poster', scanDistance: '3060 cm', minSize: '5 × 5 cm', recommended: '7 × 7 cm', dpi: '300 DPI PNG', format: 'SVG recommended' },
{ surface: 'A2 / A1 Poster', scanDistance: '12 m', minSize: '8 × 8 cm', recommended: '10 × 10 cm', dpi: '300 DPI', format: 'SVG required' },
{ surface: 'Window / Banner', scanDistance: '13 m', minSize: '10 × 10 cm', recommended: '15 × 15 cm', dpi: 'Vector only', format: 'SVG required' },
{ surface: 'Billboard', scanDistance: '310 m', minSize: '20 × 20 cm', recommended: '30 × 30 cm', dpi: 'Vector only', format: 'SVG required' },
{ surface: 'Business Card', scanDistance: '15-20 cm', minSize: '2 × 2 cm', recommended: '2.5 × 2.5 cm', dpi: '300 DPI PNG', format: 'PNG or SVG' },
{ surface: 'Flyer / Leaflet', scanDistance: '20-30 cm', minSize: '3 × 3 cm', recommended: '4 × 4 cm', dpi: '300 DPI PNG', format: 'PNG or SVG' },
{ surface: 'A4 Poster', scanDistance: '30-60 cm', minSize: '5 × 5 cm', recommended: '7 × 7 cm', dpi: '300 DPI PNG', format: 'SVG recommended' },
{ surface: 'A2 / A1 Poster', scanDistance: '1-2 m', minSize: '8 × 8 cm', recommended: '10 × 10 cm', dpi: '300 DPI', format: 'SVG required' },
{ surface: 'Window / Banner', scanDistance: '1-3 m', minSize: '10 × 10 cm', recommended: '15 × 15 cm', dpi: 'Vector only', format: 'SVG required' },
{ surface: 'Billboard', scanDistance: '3-10 m', minSize: '20 × 20 cm', recommended: '30 × 30 cm', dpi: 'Vector only', format: 'SVG required' },
];
export default function QRCodePrintSizeGuidePage() {
@@ -195,7 +195,7 @@ export default function QRCodePrintSizeGuidePage() {
</div>
<h3 className="font-bold text-slate-900 mb-2">SVG for Everything Larger</h3>
<p className="text-sm text-slate-600 leading-relaxed">
SVG is a vector format it scales to any size without quality loss. Use SVG for all A2+ posters, banners, and billboards. QR Master exports SVG directly from the generator.
SVG is a vector format - it scales to any size without quality loss. Use SVG for all A2+ posters, banners, and billboards. QR Master exports SVG directly from the generator.
</p>
</div>
@@ -205,7 +205,7 @@ export default function QRCodePrintSizeGuidePage() {
</div>
<h3 className="font-bold text-slate-900 mb-2">Error Correction Level</h3>
<p className="text-sm text-slate-600 leading-relaxed">
Use <strong>Level Q</strong> (25% recovery) or <strong>Level H</strong> (30% recovery) for print especially if you add a logo. Higher error correction means more modules and a slightly larger minimum size.
Use <strong>Level Q</strong> (25% recovery) or <strong>Level H</strong> (30% recovery) for print - especially if you add a logo. Higher error correction means more modules and a slightly larger minimum size.
</p>
</div>
</div>
@@ -282,11 +282,11 @@ export default function QRCodePrintSizeGuidePage() {
},
{
question: 'What DPI should I use for printing a QR code?',
answer: 'Use 300 DPI minimum for all print. For large format (posters, banners, billboards), always use SVG it is vector-based and scales to any size without quality loss.',
answer: 'Use 300 DPI minimum for all print. For large format (posters, banners, billboards), always use SVG - it is vector-based and scales to any size without quality loss.',
},
{
question: 'How big should a QR code be on a poster?',
answer: 'For an A2 poster viewed at 12 metres, use at least 8 × 8 cm. For A1 posters viewed from further away, 10 × 10 cm is recommended.',
answer: 'For an A2 poster viewed at 1-2 metres, use at least 8 × 8 cm. For A1 posters viewed from further away, 10 × 10 cm is recommended.',
},
{
question: 'How big should a QR code be on a business card?',

View File

@@ -16,10 +16,10 @@ import {
export const metadata: Metadata = {
title: {
absolute: 'QR Code Tracking: Track QR Code Scans',
absolute: 'QR Code Tracking - See Which Placement Drove the Scan',
},
description:
'Track QR code scans with dynamic QR tracking. See scan time, device, location context, placements, and privacy-aware analytics for printed campaigns.',
'Give every flyer, poster and table tent its own code, then see which one actually worked. Scan data by time, device and location. IPs hashed, no scanner data.',
keywords:
'qr code tracking, qr code analytics, track qr scans, dynamic qr tracking, qr scan analytics',
alternates: {
@@ -30,9 +30,9 @@ export const metadata: Metadata = {
},
},
openGraph: {
title: 'QR Code Tracking: Track QR Code Scans',
title: 'QR Code Tracking - See Which Placement Drove the Scan',
description:
'Track QR code scans with analytics for time, device, and location context. Use dynamic QR codes to measure placements and campaigns.',
'One code per placement turns print into measurable media. Scan data by time, device, and location context - for flyers, posters, packaging, and events.',
url: 'https://www.qrmaster.net/qr-code-tracking',
type: 'website',
images: ['/og-image.png'],
@@ -193,7 +193,7 @@ const faqItems = [
{
question: 'Is QR code scan tracking free?',
answer:
'Yes the Free plan includes basic scan tracking for up to 3 active dynamic QR codes. Pro and Business plans include extended scan history, more active codes, and full analytics.',
'Yes - the Free plan includes basic scan tracking for up to 3 active dynamic QR codes. Pro and Business plans include extended scan history, more active codes, and full analytics.',
},
{
question: 'Can I see unlimited scan history?',
@@ -391,7 +391,7 @@ export default function QRCodeTrackingPage() {
<p className="text-xl leading-relaxed text-gray-600">
Track QR code scans by time, device, and location context
with dynamic QR codes, so printed campaigns and physical
placements stop being guesswork see which placement
placements stop being guesswork - see which placement
worked before you plan the next print run.
</p>
</div>
@@ -502,7 +502,7 @@ export default function QRCodeTrackingPage() {
QR codes without tracking vs. with QR Master tracking
</h2>
<p className="text-slate-400 mb-10 max-w-2xl">
Printing a QR code without scan analytics is like running a billboard campaign with no impression data you spend the budget but can&apos;t tell what worked.
Printing a QR code without scan analytics is like running a billboard campaign with no impression data - you spend the budget but can&apos;t tell what worked.
</p>
<div className="grid md:grid-cols-2 gap-6">
<div className="bg-slate-800 rounded-2xl p-6 border border-slate-700">
@@ -515,10 +515,10 @@ export default function QRCodeTrackingPage() {
<h3 className="text-lg font-bold text-white">Without tracking</h3>
</div>
<ul className="space-y-3 text-slate-400 text-sm">
<li className="flex gap-2"><span className="text-red-400 mt-0.5"></span>You print QR codes and have no idea if anyone scans them</li>
<li className="flex gap-2"><span className="text-red-400 mt-0.5"></span>You can&apos;t tell which flyer, sign, or table card performs best</li>
<li className="flex gap-2"><span className="text-red-400 mt-0.5"></span>Broken or outdated destination URLs require a full reprint</li>
<li className="flex gap-2"><span className="text-red-400 mt-0.5"></span>No way to know if your campaign timing or placement was right</li>
<li className="flex gap-2"><span className="text-red-400 mt-0.5">-</span>You print QR codes and have no idea if anyone scans them</li>
<li className="flex gap-2"><span className="text-red-400 mt-0.5">-</span>You can&apos;t tell which flyer, sign, or table card performs best</li>
<li className="flex gap-2"><span className="text-red-400 mt-0.5">-</span>Broken or outdated destination URLs require a full reprint</li>
<li className="flex gap-2"><span className="text-red-400 mt-0.5">-</span>No way to know if your campaign timing or placement was right</li>
</ul>
</div>
<div className="bg-emerald-900/30 rounded-2xl p-6 border border-emerald-700/50">
@@ -533,7 +533,7 @@ export default function QRCodeTrackingPage() {
<ul className="space-y-3 text-slate-300 text-sm">
<li className="flex gap-2"><span className="text-emerald-400 mt-0.5">+</span>See exactly which QR codes are being scanned and when</li>
<li className="flex gap-2"><span className="text-emerald-400 mt-0.5">+</span>Compare placements: restaurant table A vs. table B, flyer vs. window sign</li>
<li className="flex gap-2"><span className="text-emerald-400 mt-0.5">+</span>Know the device mix 89% of scans are mobile, so you can optimize landing pages</li>
<li className="flex gap-2"><span className="text-emerald-400 mt-0.5">+</span>Know the device mix - 89% of scans are mobile, so you can optimize landing pages</li>
<li className="flex gap-2"><span className="text-emerald-400 mt-0.5">+</span>Update destinations without reprinting; fix errors in seconds from your dashboard</li>
</ul>
</div>
@@ -824,7 +824,7 @@ export default function QRCodeTrackingPage() {
Industry data
</p>
<h2 className="text-3xl font-bold text-gray-900 mb-3">
QR code adoption is accelerating tracking makes that growth measurable
QR code adoption is accelerating - tracking makes that growth measurable
</h2>
<p className="text-gray-600 mb-10 max-w-2xl">
As QR scan volumes grow, businesses that track their codes gain compounding insight advantages over those that print blind.
@@ -854,7 +854,7 @@ export default function QRCodeTrackingPage() {
</div>
</section>
{/* WHY QR TRACKING MATTERS STATISTICS */}
{/* WHY QR TRACKING MATTERS - STATISTICS */}
<section className="bg-white py-16">
<div className="container mx-auto max-w-4xl px-4 sm:px-6 lg:px-8">
<div className="flex items-center gap-2 mb-3">
@@ -879,7 +879,7 @@ export default function QRCodeTrackingPage() {
Why Tracking Makes QR Codes Measurable Marketing Assets
</h2>
<p className="text-gray-600 mb-10 max-w-2xl">
Without scan analytics, a printed QR code is invisible you can't
Without scan analytics, a printed QR code is invisible - you can't
tell if your campaign placement is working. Tracking turns every
scan into actionable data.
</p>
@@ -890,8 +890,8 @@ export default function QRCodeTrackingPage() {
89% vs 33%
</div>
<p className="text-gray-700 text-sm leading-relaxed mb-3">
Companies with strong omnichannel engagement requiring
closed-loop tracking from offline to online retain{' '}
Companies with strong omnichannel engagement - requiring
closed-loop tracking from offline to online - retain{' '}
<strong>89% of their customers</strong>, compared to 33% for
businesses without integrated tracking.
</p>
@@ -905,7 +905,7 @@ export default function QRCodeTrackingPage() {
>
Aberdeen Group
</a>{' '}
Omnichannel Customer Engagement Study
- Omnichannel Customer Engagement Study
</p>
</div>
@@ -916,7 +916,7 @@ export default function QRCodeTrackingPage() {
<p className="text-gray-700 text-sm leading-relaxed mb-3">
of small businesses identify print and direct mail errors as a
major source of wasted marketing budget. QR tracking reveals
which placements actually drive scans so you reprint only
which placements actually drive scans - so you reprint only
what works.
</p>
<p className="text-xs text-gray-500">

View File

@@ -1,4 +1,4 @@
import { getAggregateRating } from '@/lib/testimonial-data';
import { getAggregateRating } from '@/lib/testimonial-data';
import React from 'react';
import type { Metadata } from 'next';
import ReprintSavingsCalculator from '@/components/marketing/ReprintSavingsCalculator';
@@ -40,13 +40,13 @@ const softwareSchema = {
'@type': 'WebApplication',
'@id': 'https://www.qrmaster.net/reprint-calculator#app',
name: 'QR Code Reprint Cost Calculator',
applicationCategory: 'BusinessApplication',
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: getAggregateRating().ratingValue,
reviewCount: getAggregateRating().reviewCount,
bestRating: getAggregateRating().bestRating,
worstRating: getAggregateRating().worstRating,
applicationCategory: 'BusinessApplication',
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: getAggregateRating().ratingValue,
reviewCount: getAggregateRating().reviewCount,
bestRating: getAggregateRating().bestRating,
worstRating: getAggregateRating().worstRating,
},
operatingSystem: 'Web Browser',
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
@@ -157,7 +157,7 @@ export default function ReprintCalculatorPage() {
<p className="text-xl text-slate-600 mb-8 leading-relaxed max-w-2xl mx-auto">
Every time a URL changes, static QR codes become useless trash.
Dynamic QR codes let you update the destination URL at any time your printed materials stay usable even when links change.
Dynamic QR codes let you update the destination URL at any time - your printed materials stay usable even when links change.
</p>
<div className="flex justify-center">

View File

@@ -51,7 +51,7 @@ const RESULTS: Record<string, Result> = {
'pharmacode': {
format: 'Pharmacode',
label: 'Pharmacode',
description: 'A pharmaceutical packaging standard used to verify correct product packaging. Encodes a single numeric value (3131071).',
description: 'A pharmaceutical packaging standard used to verify correct product packaging. Encodes a single numeric value (3-131071).',
example: '12345',
color: 'red',
},

View File

@@ -164,7 +164,7 @@ export default function BarcodeGeneratorClient() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="url" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -14,7 +14,7 @@ export function BarcodeGuide() {
<BookOpen className="w-8 h-8 text-blue-600" />
</div>
<h2 className="text-3xl font-bold text-slate-900 m-0">
Barcode Generator How Barcodes Work and Why They Matter
Barcode Generator - How Barcodes Work and Why They Matter
</h2>
</div>
<p className="text-xs text-slate-400 mb-8 not-prose">
@@ -138,7 +138,7 @@ export function BarcodeGuide() {
<tr className="border-t border-slate-100 bg-slate-50">
<td className="p-3 font-bold text-red-700">Pharmacode</td>
<td className="p-3 text-slate-600">Pharmaceutical packaging</td>
<td className="p-3 text-slate-500 font-mono text-xs">3131071 numeric</td>
<td className="p-3 text-slate-500 font-mono text-xs">3-131071 numeric</td>
<td className="p-3 text-slate-600">Pharma</td>
</tr>
</tbody>
@@ -185,7 +185,7 @@ export function BarcodeGuide() {
<h2>Barcode Accuracy: What the Research Shows</h2>
<p>
Barcodes are not just convenient they are scientifically proven to reduce errors across industries. Independent research from logistics, healthcare, and economics consistently shows the same result: switching from manual data entry to barcode scanning produces dramatic accuracy gains.
Barcodes are not just convenient - they are scientifically proven to reduce errors across industries. Independent research from logistics, healthcare, and economics consistently shows the same result: switching from manual data entry to barcode scanning produces dramatic accuracy gains.
</p>
<div className="not-prose grid gap-4 my-8">
@@ -240,7 +240,7 @@ export function BarcodeGuide() {
rel="noopener noreferrer"
className="underline hover:text-slate-600"
>
New England Journal of Medicine "Effect of Bar-Code Technology on the Safety of Medication Administration"
New England Journal of Medicine - "Effect of Bar-Code Technology on the Safety of Medication Administration"
</a>
{'; '}
<a
@@ -249,7 +249,7 @@ export function BarcodeGuide() {
rel="noopener noreferrer"
className="underline hover:text-slate-600"
>
AHRQ Barcode Medication Administration (BCMA) research
AHRQ - Barcode Medication Administration (BCMA) research
</a>
{'.'}
</p>
@@ -267,7 +267,7 @@ export function BarcodeGuide() {
Significant Productivity Gains at Checkout (Retail Economics)
</p>
<p className="text-sm text-slate-600 mb-2">
The productivity impact of barcodes extends beyond accuracy. Economic research from the National Bureau of Economic Research (NBER) documents dramatic throughput gains for retailers when switching from manual key-entry to barcode scanners an effect that transformed checkout speed and operational cost structures across the industry.
The productivity impact of barcodes extends beyond accuracy. Economic research from the National Bureau of Economic Research (NBER) documents dramatic throughput gains for retailers when switching from manual key-entry to barcode scanners - an effect that transformed checkout speed and operational cost structures across the industry.
</p>
<p className="text-xs text-slate-400">
Source:{' '}
@@ -277,7 +277,7 @@ export function BarcodeGuide() {
rel="noopener noreferrer"
className="underline hover:text-slate-600"
>
NBER Working Paper "Raising the Barcode Scanner: Technology and Productivity in the Retail Sector"
NBER Working Paper - "Raising the Barcode Scanner: Technology and Productivity in the Retail Sector"
</a>
{'.'}
</p>
@@ -329,7 +329,7 @@ export function BarcodeGuide() {
<h2>Understanding Check Digits</h2>
<p>
Most barcodes (like EAN and UPC) include a "Check Digit"the last number in the sequence. This digit is calculated mathematically from the other numbers to ensure the barcode is scanned correctly. Even if a barcode is slightly damaged or scratched, the scanner uses the check digit to verify the integrity of the data.
Most barcodes (like EAN and UPC) include a "Check Digit"-the last number in the sequence. This digit is calculated mathematically from the other numbers to ensure the barcode is scanned correctly. Even if a barcode is slightly damaged or scratched, the scanner uses the check digit to verify the integrity of the data.
</p>
<h2>Best Practices for Printing Barcodes</h2>
@@ -363,7 +363,7 @@ export function BarcodeGuide() {
},
{
question: 'Can I download barcodes in vector format (SVG)?',
answer: 'Yes SVG downloads are available. SVG files are vector-based, meaning they can be scaled to any size without losing quality. This is ideal for professional product packaging and labels.',
answer: 'Yes - SVG downloads are available. SVG files are vector-based, meaning they can be scaled to any size without losing quality. This is ideal for professional product packaging and labels.',
},
{
question: 'How do I generate a barcode online?',
@@ -375,11 +375,11 @@ export function BarcodeGuide() {
},
{
question: 'Can I use these barcodes for Amazon (EAN/UPC)?',
answer: 'You can generate the barcode <em>image</em> here if you already have a valid EAN/UPC number. However, you cannot create a globally registered EAN/UPC number here you must purchase official numbers from GS1 to list products on Amazon or in major retail systems.',
answer: 'You can generate the barcode <em>image</em> here if you already have a valid EAN/UPC number. However, you cannot create a globally registered EAN/UPC number here - you must purchase official numbers from GS1 to list products on Amazon or in major retail systems.',
},
{
question: 'What is the difference between a barcode and a QR code?',
answer: 'A barcode stores data in one dimension (horizontal bars) and is mainly used for product identification. A QR code stores data in two dimensions (a matrix) and can hold much more information URLs, contact details, WiFi credentials, and more.',
answer: 'A barcode stores data in one dimension (horizontal bars) and is mainly used for product identification. A QR code stores data in two dimensions (a matrix) and can hold much more information - URLs, contact details, WiFi credentials, and more.',
},
]}
/>

View File

@@ -23,10 +23,10 @@ import {
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free Custom Barcode Generator - EAN, UPC, Code 128',
absolute: 'Barcode Generator - EAN-13, UPC-A, Code 128, Free',
},
description:
'Free custom barcode generator and barcode maker for EAN-13, UPC-A, UPC barcode, and Code 128. Create scannable labels for retail and inventory, then download PNG or SVG.',
'Type a number, get a scannable barcode. EAN-13, UPC-A and Code 128 for retail shelves, inventory and labels. Download print-ready PNG or SVG. Free, no signup.',
keywords: [
'barcode generator',
'custom barcode generator',
@@ -49,9 +49,8 @@ export const metadata: Metadata = {
},
},
openGraph: {
title: 'Free Custom Barcode Generator - EAN, UPC & Code 128',
description:
'Free online barcode maker for EAN-13, UPC-A, and Code 128. Create scannable custom barcodes in seconds and download PNG or SVG.',
title: 'Barcode Generator - EAN-13, UPC-A, Code 128, Free',
description: 'Type a number, get a scannable barcode. For retail shelves, inventory and labels.',
url: 'https://www.qrmaster.net/tools/barcode-generator',
siteName: 'QR Master',
locale: 'en_US',
@@ -62,9 +61,8 @@ export const metadata: Metadata = {
},
twitter: {
card: 'summary_large_image',
title: 'Free Barcode Generator',
description:
'Create custom barcodes in seconds. Download high-quality PNG/SVG.',
title: 'Barcode Generator - EAN-13, UPC-A, Code 128, Free',
description: 'Type a number, get a scannable barcode. For retail shelves, inventory and labels.',
},
robots: {
index: true,
@@ -163,7 +161,7 @@ const jsonLd = {
'Can I download barcodes in vector format (SVG)?': {
question: 'Can I download barcodes in vector format (SVG)?',
answer:
'Yes! We offer SVG downloads. SVG files are vector-based, meaning they can be scaled to any size without losing qualityperfect for professional product packaging.',
'Yes! We offer SVG downloads. SVG files are vector-based, meaning they can be scaled to any size without losing quality-perfect for professional product packaging.',
},
'How do I generate a barcode online?': {
question: 'How do I generate a barcode online?',
@@ -178,7 +176,7 @@ const jsonLd = {
'Can I use these barcodes for Amazon (EAN/UPC)?': {
question: 'Can I use these barcodes for Amazon (EAN/UPC)?',
answer:
'You can generate the image for Amazon here if you already have your EAN/UPC number. However, you cannot "create" a valid global EAN number hereyou must purchase those official numbers from GS1 to sell on major platforms like Amazon.',
'You can generate the image for Amazon here if you already have your EAN/UPC number. However, you cannot "create" a valid global EAN number here-you must purchase those official numbers from GS1 to sell on major platforms like Amazon.',
},
'What is the difference between a barcode and a QR code?': {
question: 'What is the difference between a barcode and a QR code?',
@@ -188,7 +186,7 @@ const jsonLd = {
'What barcode format do Amazon and Walmart require?': {
question: 'What barcode format do Amazon and Walmart require?',
answer:
'Amazon and Walmart require UPC-A (12 digits) for products sold in the United States and Canada, and EAN-13 (13 digits) for products sold internationally. You must purchase official GS1-registered numbers to sell on these platforms you cannot self-generate valid retail UPC/EAN numbers.',
'Amazon and Walmart require UPC-A (12 digits) for products sold in the United States and Canada, and EAN-13 (13 digits) for products sold internationally. You must purchase official GS1-registered numbers to sell on these platforms - you cannot self-generate valid retail UPC/EAN numbers.',
},
'What is the minimum print size for a scannable barcode?': {
question: 'What is the minimum print size for a scannable barcode?',
@@ -203,7 +201,7 @@ const jsonLd = {
'What is the difference between EAN-13 and UPC-A?': {
question: 'What is the difference between EAN-13 and UPC-A?',
answer:
'EAN-13 (13 digits) is the international retail standard used in Europe, Asia, and globally. UPC-A (12 digits) is the North American retail standard used in the US and Canada. An EAN-13 barcode starting with a 0 is actually a UPC-A code all UPC-A codes are a subset of EAN-13. Most modern POS scanners read both formats.',
'EAN-13 (13 digits) is the international retail standard used in Europe, Asia, and globally. UPC-A (12 digits) is the North American retail standard used in the US and Canada. An EAN-13 barcode starting with a 0 is actually a UPC-A code - all UPC-A codes are a subset of EAN-13. Most modern POS scanners read both formats.',
},
}),
],
@@ -258,7 +256,7 @@ export default function BarcodeGeneratorPage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-blue-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-blue-400"></span>
</span>
Free Tool Professional & Fast
Free Tool - Professional & Fast
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
@@ -399,13 +397,13 @@ export default function BarcodeGeneratorPage() {
Inventory &amp; Logistics
</div>
<div className="text-xs text-slate-500">
Supports letters + numbers best for internal SKU systems
Supports letters + numbers - best for internal SKU systems
</div>
</div>
</div>
<div className="bg-amber-50 border border-amber-200 rounded-xl p-5">
<h3 className="font-bold text-slate-900 mb-2">
Barcode vs. QR Code When to Use Which
Barcode vs. QR Code - When to Use Which
</h3>
<div className="grid md:grid-cols-2 gap-4 text-sm text-slate-700">
<div>

View File

@@ -86,7 +86,7 @@ export default function PhoneGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="url" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -139,7 +139,7 @@ export default function CallQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-emerald-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-emerald-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
@@ -148,7 +148,7 @@ export default function CallQRCodePage() {
</h1>
<p className="text-lg md:text-xl text-indigo-100 max-w-2xl mx-auto lg:mx-0 mb-8 leading-relaxed">
Create a QR code that opens the phone dialer with your number pre-filled one scan, no typing.
Create a QR code that opens the phone dialer with your number pre-filled - one scan, no typing.
<strong className="text-white block sm:inline mt-2 sm:mt-0"> Works on every smartphone.</strong>
</p>

View File

@@ -135,7 +135,7 @@ export default function CryptoGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="crypto" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -10,24 +10,24 @@ import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free Crypto QR Code Generator | Krypto QR Code Erstellen | QR Master',
absolute: 'Crypto Wallet QR Code Generator - BTC, ETH, USDT',
},
description: 'Create a QR code for your Crypto wallet address. Erstelle Bitcoin & Ethereum QR Codes für einfache Zahlungen. Supports BTC, ETH, USDT & more.',
description: 'Turn a wallet address into a QR code so nobody retypes 42 characters. Supports Bitcoin, Ethereum, USDT, Solana and more. Free, no signup, no wallet access.',
keywords: ['crypto qr code', 'bitcoin qr generator', 'ethereum qr code', 'crypto wallet qr', 'donation qr code', 'krypto qr code', 'bitcoin qr code erstellen', 'kryptowährung qr code', 'wallet adresse qr code'],
alternates: {
canonical: 'https://www.qrmaster.net/tools/crypto-qr-code',
},
openGraph: {
title: 'Free Crypto QR Code Generator | QR Master',
description: 'Generate QR codes to accept Crypto payments securely. Supports BTC, ETH, SOL.',
title: 'Crypto Wallet QR Code Generator - BTC, ETH, USDT',
description: 'Turn a wallet address into a QR code so nobody retypes 42 characters. No wallet access.',
type: 'website',
url: 'https://www.qrmaster.net/tools/crypto-qr-code',
images: [{ url: '/og-crypto-generator.png', width: 1200, height: 630 }],
},
twitter: {
card: 'summary_large_image',
title: 'Free Crypto QR Code Generator',
description: 'Create secure QR codes for your crypto wallet.',
title: 'Crypto Wallet QR Code Generator - BTC, ETH, USDT',
description: 'Turn a wallet address into a QR code so nobody retypes 42 characters. No wallet access.',
},
robots: {
index: true,
@@ -143,7 +143,7 @@ export default function CryptoQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-orange-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-orange-400"></span>
</span>
Free Tool Secure & Private
Free Tool - Secure & Private
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">

View File

@@ -104,7 +104,7 @@ export default function EmailGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="url" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -108,7 +108,7 @@ export default function EmailPage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-red-300 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-red-300"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">

View File

@@ -114,7 +114,7 @@ export default function EventGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="meeting" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -139,7 +139,7 @@ export default function EventQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-violet-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-violet-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">

View File

@@ -85,7 +85,7 @@ export default function FacebookGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="social" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -10,24 +10,24 @@ import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free Facebook QR Code Generator | Get Likes & Follows | QR Master',
absolute: 'Facebook QR Code Generator - Page, Profile or Group',
},
description: 'Create a QR code for your Facebook Page, Profile, or Group. Facebook QR Code erstellen. Scanners follow you instantly. Free & Easy.',
description: 'Turn a Facebook Page, profile or group into a scannable QR code. One scan opens it in the app. Add your colors and logo, download PNG or SVG. Free, no signup.',
keywords: ['facebook qr code', 'fb qr generator', 'facebook page qr', 'follow qr code', 'social media qr code', 'facebook qr code erstellen', 'facebook seite qr code', 'facebook gruppe qr code', 'facebook profil qr code', 'mehr likes qr code'],
alternates: {
canonical: 'https://www.qrmaster.net/tools/facebook-qr-code',
},
openGraph: {
title: 'Free Facebook QR Code Generator | QR Master',
description: 'Generate QR codes to grow your Facebook audience. Instant app redirect.',
title: 'Facebook QR Code Generator - Page, Profile or Group',
description: 'One scan opens your Page, profile or group in the app. Your colors, your logo, PNG or SVG.',
type: 'website',
url: 'https://www.qrmaster.net/tools/facebook-qr-code',
images: [{ url: '/og-facebook-generator.png', width: 1200, height: 630 }],
},
twitter: {
card: 'summary_large_image',
title: 'Free Facebook QR Code Generator',
description: 'Create QR codes for Facebook. Boost your engagement.',
title: 'Facebook QR Code Generator - Page, Profile or Group',
description: 'One scan opens your Page, profile or group in the app. Your colors, your logo, PNG or SVG.',
},
robots: {
index: true,
@@ -139,7 +139,7 @@ export default function FacebookQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-blue-300 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-blue-300"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
@@ -285,7 +285,7 @@ export default function FacebookQRCodePage() {
Where a Facebook QR Code Works Best
</h2>
<p className="text-slate-600 mb-8 max-w-2xl">
Facebook is where local communities, events, and groups live. A QR code bridges the gap between a physical location and your page, group, or event no searching, no typos.
Facebook is where local communities, events, and groups live. A QR code bridges the gap between a physical location and your page, group, or event - no searching, no typos.
</p>
<div className="grid md:grid-cols-3 gap-6 mb-8">
<article className="bg-slate-50 rounded-xl border border-slate-200 p-6">

View File

@@ -105,7 +105,7 @@ export default function GeolocationGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="url" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -10,24 +10,24 @@ import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free Geolocation QR Code Generator | Standort & Map Links | QR Master',
absolute: 'Location QR Code Generator - Maps & Directions, Free',
},
description: 'Create a QR code for a specific location. Erstelle einen Map QR Code für Google Maps. Coordinates & Directions instantly. Standort teilen leicht gemacht.',
description: 'Turn an address or GPS coordinates into a QR code. One scan opens directions in Google Maps or Apple Maps. For signage, flyers and event wayfinding. No signup.',
keywords: ['location qr code', 'maps qr code', 'google maps qr generator', 'geolocation qr', 'coordinates qr code', 'standort qr code', 'google maps qr code erstellen', 'koordinaten qr code', 'wegbeschreibung qr code', 'maps qr code generator'],
alternates: {
canonical: 'https://www.qrmaster.net/tools/geolocation-qr-code',
},
openGraph: {
title: 'Free Geolocation QR Code Generator | QR Master',
description: 'Navigate users to any location with a QR code. Opens directly in Google Maps.',
title: 'Location QR Code Generator - Maps & Directions, Free',
description: 'One scan opens directions in Google Maps or Apple Maps. For signage and wayfinding.',
type: 'website',
url: 'https://www.qrmaster.net/tools/geolocation-qr-code',
images: [{ url: '/og-geolocation-generator.png', width: 1200, height: 630 }],
},
twitter: {
card: 'summary_large_image',
title: 'Free Geolocation QR Code Generator',
description: 'Create QR codes for maps and locations. Instant and free.',
title: 'Location QR Code Generator - Maps & Directions, Free',
description: 'One scan opens directions in Google Maps or Apple Maps. For signage and wayfinding.',
},
robots: {
index: true,
@@ -139,7 +139,7 @@ export default function GeolocationQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-emerald-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-emerald-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">

View File

@@ -86,7 +86,7 @@ export default function GoogleReviewGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="googleReview" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
<div className="bg-white rounded-3xl shadow-2xl shadow-slate-900/10 overflow-hidden border border-slate-100">
<div className="grid lg:grid-cols-2">

View File

@@ -10,10 +10,10 @@ import { generateSoftwareAppSchema } from '@/lib/schema-utils';
export const metadata: Metadata = {
title: {
absolute: 'Google Review QR Code Generator Free | QR Master',
absolute: 'Google Review QR Code Generator - Free, No Signup',
},
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.',
'Ask for the review while the customer is still standing there. One scan opens your Google review form - no searching, no link. Free, no signup, PNG or SVG.',
keywords: [
'qr code for google reviews',
'qr code generator for google reviews',
@@ -29,17 +29,15 @@ export const metadata: Metadata = {
},
},
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.',
title: 'Google Review QR Code Generator - Free, No Signup',
description: 'Ask while the customer is still standing there. One scan opens your Google review form.',
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.',
title: 'Google Review QR Code Generator - Free, No Signup',
description: 'Ask while the customer is still standing there. One scan opens your Google review form.',
},
robots: {
index: true,
@@ -103,7 +101,7 @@ const jsonLd = {
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.',
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.',
},
},
{
@@ -188,13 +186,13 @@ export default function GoogleReviewQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-yellow-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-yellow-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
Google Review QR Code <br className="hidden lg:block" />
<span className="text-transparent bg-clip-text bg-gradient-to-r from-yellow-400 to-orange-400">
Generator Free
Generator - Free
</span>
</h1>
@@ -391,7 +389,7 @@ export default function GoogleReviewQRCodePage() {
</div>
</section>
{/* WHY REVIEWS MATTER STATISTICS */}
{/* WHY REVIEWS MATTER - STATISTICS */}
<section className="py-16 px-4 sm:px-6 lg:px-8 bg-white">
<div className="max-w-4xl mx-auto">
<div className="flex items-center gap-2 mb-3">
@@ -405,7 +403,7 @@ export default function GoogleReviewQRCodePage() {
</h2>
<p className="text-slate-600 mb-10 max-w-2xl">
A <strong>Google Review QR code</strong> reduces the friction
between a satisfied customer and a published review the single
between a satisfied customer and a published review - the single
biggest barrier to getting more reviews.
</p>
@@ -416,8 +414,8 @@ export default function GoogleReviewQRCodePage() {
</div>
<p className="text-slate-700 text-sm leading-relaxed mb-3">
of consumers will leave a review for a business{' '}
<strong>if they are asked</strong> but most businesses never
ask, or ask via email where completion rates drop to 13%.
<strong>if they are asked</strong> - but most businesses never
ask, or ask via email where completion rates drop to 1-3%.
</p>
<p className="text-xs text-slate-500">
Source:{' '}
@@ -439,7 +437,7 @@ export default function GoogleReviewQRCodePage() {
<p className="text-slate-700 text-sm leading-relaxed mb-3">
increase in conversion rates for products and businesses with
reviews compared to those without. Capturing reviews at the
point of sale where satisfaction is highest maximizes this
point of sale - where satisfaction is highest - maximizes this
effect.
</p>
<p className="text-xs text-slate-500">
@@ -470,13 +468,13 @@ export default function GoogleReviewQRCodePage() {
Why Google Review QR Codes Work Better Than Asking Verbally
</h2>
<div className="prose prose-slate max-w-none">
<p className="text-lg text-slate-600 mb-6">Verbally asking for a review creates a promise customers intend to keep but rarely fulfill. The moment they leave your business, the intention fades. A Google Review QR code shortens the gap between the moment of satisfaction and the act of leaving a review to a single scan while the experience is still fresh and the customer is still engaged.</p>
<p className="text-lg text-slate-600 mb-6">Verbally asking for a review creates a promise customers intend to keep but rarely fulfill. The moment they leave your business, the intention fades. A Google Review QR code shortens the gap between the moment of satisfaction and the act of leaving a review to a single scan - while the experience is still fresh and the customer is still engaged.</p>
<h3 className="text-xl font-bold text-slate-900 mt-8 mb-4">The Best Placement for Google Review QR Codes</h3>
<p className="text-slate-600 mb-4">Placement is everything. The highest-performing locations are those where customers are already pausing: on printed receipts so they see it while reviewing the bill, on table tent cards at restaurants between ordering and paying, on the front door or exit so it is the last thing they see when leaving satisfied, and on packaging inserts inside product boxes that customers open at home after a purchase. Display the QR code at roughly A5 size with a clear label such as "Happy with your visit? Leave us a Google Review" customers do not need instructions beyond that. Checkout counters and front desk areas work especially well because staff can gesture toward the code while the customer is already in a positive frame of mind.</p>
<p className="text-slate-600 mb-4">Placement is everything. The highest-performing locations are those where customers are already pausing: on printed receipts so they see it while reviewing the bill, on table tent cards at restaurants between ordering and paying, on the front door or exit so it is the last thing they see when leaving satisfied, and on packaging inserts inside product boxes that customers open at home after a purchase. Display the QR code at roughly A5 size with a clear label such as "Happy with your visit? Leave us a Google Review" - customers do not need instructions beyond that. Checkout counters and front desk areas work especially well because staff can gesture toward the code while the customer is already in a positive frame of mind.</p>
<h3 className="text-xl font-bold text-slate-900 mt-8 mb-4">How Many More Reviews Will You Get?</h3>
<p className="text-slate-600 mb-4">The BrightLocal research above shows 70% of consumers will leave a review if asked, and asking in person at the point of sale removes the friction that email follow-ups add. The reason is timing: a QR code captures the customer at peak satisfaction, requiring no extra steps beyond scanning and tapping the star rating. Email review requests, by contrast, arrive hours or days later when the emotional high has passed and competing priorities fill the inbox. Even a modest increase in monthly reviews compounds over a year into a stronger local search presence, since Google's ranking algorithm weighs both review count and recency.</p>
<h3 className="text-xl font-bold text-slate-900 mt-8 mb-4">Responding to Reviews: What to Do After You Collect Them</h3>
<p className="text-slate-600 mb-4">Collecting reviews is only half the strategy. Responding to every review positive and negative signals to Google that your business is active and engaged, which supports local ranking. For positive reviews, a brief personalised thank-you (mentioning a specific detail if possible) reinforces the relationship. For critical reviews, acknowledge the issue, apologise where appropriate, and invite further contact offline. Google surfaces response rate and speed in its quality signals, so even a short reply within 24 hours outperforms silence. To understand which QR code placements are driving the most scans before reviewers land on Google, use <a href="/qr-code-tracking" className="text-blue-600 underline hover:text-blue-800">QR code scan tracking</a> to measure volume by location and time of day.</p>
<p className="text-slate-600 mb-4">Collecting reviews is only half the strategy. Responding to every review - positive and negative - signals to Google that your business is active and engaged, which supports local ranking. For positive reviews, a brief personalised thank-you (mentioning a specific detail if possible) reinforces the relationship. For critical reviews, acknowledge the issue, apologise where appropriate, and invite further contact offline. Google surfaces response rate and speed in its quality signals, so even a short reply within 24 hours outperforms silence. To understand which QR code placements are driving the most scans before reviewers land on Google, use <a href="/qr-code-tracking" className="text-blue-600 underline hover:text-blue-800">QR code scan tracking</a> to measure volume by location and time of day.</p>
</div>
</div>
</section>
@@ -511,7 +509,7 @@ export default function GoogleReviewQRCodePage() {
href: '/dynamic-qr-code-generator',
title: 'Dynamic QR Code Generator',
description:
'Update your review link or redirect to a different page anytime no reprint needed.',
'Update your review link or redirect to a different page anytime - no reprint needed.',
ctaLabel: 'Create dynamic QR code',
},
{

View File

@@ -90,7 +90,7 @@ export default function InstagramGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="social" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -11,9 +11,9 @@ import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free Instagram QR Code Generator | Get More Followers | QR Master',
absolute: 'Instagram QR Code Generator - Free, No Signup',
},
description: 'Create a free Instagram QR code for your profile. Scanners follow you instantly — no app login required. Customizable & downloadable in seconds.',
description: 'Turn your Instagram profile into a scannable QR code. One scan opens your profile in the app - no login needed. Add your colors and logo, download PNG or SVG.',
keywords: ['instagram qr code', 'insta qr generator', 'ig nametag generator', 'instagram follow qr', 'social media qr code', 'qr code for instagram', 'instagram profile qr code', 'insta qr code', 'instagram nametag generator'],
alternates: {
canonical: 'https://www.qrmaster.net/tools/instagram-qr-code',
@@ -23,16 +23,16 @@ export const metadata: Metadata = {
},
},
openGraph: {
title: 'Free Instagram QR Code Generator | QR Master',
description: 'Generate QR codes to grow your Instagram following. Instant app redirect.',
title: 'Instagram QR Code Generator - Free, No Signup',
description: 'One scan opens your Instagram profile in the app. Your colors, your logo, PNG or SVG.',
type: 'website',
url: 'https://www.qrmaster.net/tools/instagram-qr-code',
images: [{ url: '/og-instagram-generator.png', width: 1200, height: 630 }],
},
twitter: {
card: 'summary_large_image',
title: 'Free Instagram QR Code Generator',
description: 'Create QR codes for Instagram. Boost your followers.',
title: 'Instagram QR Code Generator - Free, No Signup',
description: 'One scan opens your Instagram profile in the app. Your colors, your logo, PNG or SVG.',
},
robots: {
index: true,
@@ -146,12 +146,12 @@ export default function InstagramQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-pink-300 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-pink-300"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
Instagram QR Code Generator<br className="hidden lg:block" />
<span className="text-white drop-shadow-md"> Boost Your Following</span>
<span className="text-white drop-shadow-md">- Boost Your Following</span>
</h1>
<p className="text-lg md:text-xl text-pink-50 max-w-2xl mx-auto lg:mx-0 mb-8 leading-relaxed">
@@ -317,7 +317,7 @@ export default function InstagramQRCodePage() {
{
href: '/tools/whatsapp-qr-code',
title: 'WhatsApp QR Code',
description: 'Let customers message you instantly no number sharing required.',
description: 'Let customers message you instantly - no number sharing required.',
ctaLabel: 'Create WhatsApp QR',
},
{
@@ -329,7 +329,7 @@ export default function InstagramQRCodePage() {
{
href: '/dynamic-qr-code-generator',
title: 'Dynamic QR Codes',
description: 'Track how many people scan your Instagram QR code by day, device, and city.',
description: 'Track how many people scan your Instagram QR code - by day, device, and city.',
ctaLabel: 'Try Dynamic QR',
},
]}
@@ -342,25 +342,25 @@ export default function InstagramQRCodePage() {
Where an Instagram QR Code Beats a Profile Link
</h2>
<p className="text-slate-600 mb-8 max-w-2xl">
A profile link only works where people can click. An Instagram QR code works in the physical world wherever a customer is already looking at your brand but can&apos;t tap a link.
A profile link only works where people can click. An Instagram QR code works in the physical world - wherever a customer is already looking at your brand but can&apos;t tap a link.
</p>
<div className="grid md:grid-cols-3 gap-6 mb-8">
<article className="bg-slate-50 rounded-xl border border-slate-200 p-6">
<h3 className="font-bold text-slate-900 mb-2">Cafés, salons &amp; shops</h3>
<p className="text-slate-600 text-sm leading-relaxed">
Counter cards, mirrors, and window stickers turn walk-in customers into followers while they wait the moment they&apos;re most likely to check your feed.
Counter cards, mirrors, and window stickers turn walk-in customers into followers while they wait - the moment they&apos;re most likely to check your feed.
</p>
</article>
<article className="bg-slate-50 rounded-xl border border-slate-200 p-6">
<h3 className="font-bold text-slate-900 mb-2">Packaging &amp; unboxing</h3>
<p className="text-slate-600 text-sm leading-relaxed">
A QR code on the package insert catches customers at the unboxing moment ideal for brands that want user-generated content and repeat buyers.
A QR code on the package insert catches customers at the unboxing moment - ideal for brands that want user-generated content and repeat buyers.
</p>
</article>
<article className="bg-slate-50 rounded-xl border border-slate-200 p-6">
<h3 className="font-bold text-slate-900 mb-2">Events &amp; pop-ups</h3>
<p className="text-slate-600 text-sm leading-relaxed">
Booth banners and table displays let visitors follow you in two seconds instead of searching your handle and misspelling it.
Booth banners and table displays let visitors follow you in two seconds instead of searching your handle - and misspelling it.
</p>
</article>
</div>
@@ -369,7 +369,7 @@ export default function InstagramQRCodePage() {
<a href="/dynamic-qr-code-generator" className="font-semibold text-pink-600 hover:underline">dynamic QR code</a>{' '}
and compare placements with{' '}
<a href="/qr-code-tracking" className="font-semibold text-pink-600 hover:underline">QR code tracking</a>{' '}
scans by time, device, and location.
- scans by time, device, and location.
</p>
</div>
</section>

View File

@@ -126,7 +126,7 @@ export default function PayPalGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="crypto" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -140,7 +140,7 @@ export default function PayPalQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-sky-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-sky-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">

View File

@@ -88,7 +88,7 @@ export default function SMSGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="url" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -123,7 +123,7 @@ export default function SMSQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-amber-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-amber-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">

View File

@@ -108,7 +108,7 @@ export default function TeamsGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="meeting" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -12,24 +12,24 @@ import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free Microsoft Teams QR Code Generator | Join Meetings | QR Master',
absolute: 'Microsoft Teams Meeting QR Code Generator - Free',
},
description: 'Create a QR code for your Microsoft Teams meeting. Teams QR Code erstellen. Attendees scan to join instantly. For hybrid meetings & office displays.',
description: 'Turn a Teams meeting link into a QR code. Attendees scan to join - no meeting ID, no copy-paste. Print it for meeting rooms, desks and hybrid event signage.',
keywords: ['teams qr code', 'microsoft teams meeting qr', 'join teams qr code', 'meeting room qr', 'teams invitation qr', 'hybrid meeting qr code', 'microsoft teams qr code erstellen', 'teams meeting qr code', 'teams besprechung qr', 'teams beitreten qr'],
alternates: {
canonical: 'https://www.qrmaster.net/tools/teams-qr-code',
},
openGraph: {
title: 'Free Microsoft Teams QR Code Generator | QR Master',
description: 'Generate QR codes for Teams meetings. One scan to join instantly.',
title: 'Microsoft Teams Meeting QR Code Generator - Free',
description: 'Attendees scan to join. No meeting ID, no copy-paste. Print it for meeting rooms and desks.',
type: 'website',
url: 'https://www.qrmaster.net/tools/teams-qr-code',
images: [{ url: '/og-teams-generator.png', width: 1200, height: 630 }],
},
twitter: {
card: 'summary_large_image',
title: 'Free Microsoft Teams QR Code Generator',
description: 'Create Teams meeting QR codes. Instant and free.',
title: 'Microsoft Teams Meeting QR Code Generator - Free',
description: 'Attendees scan to join. No meeting ID, no copy-paste. Print it for meeting rooms and desks.',
},
robots: {
index: true,
@@ -132,7 +132,7 @@ export default function TeamsQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-white opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-white"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
@@ -267,13 +267,13 @@ export default function TeamsQRCodePage() {
<GrowthLinksSection
eyebrow="Beyond a single meeting"
title="More QR workflows for hybrid offices"
description="A meeting link doesn't change often, but the same setup works for anything that does front-desk WiFi, room booking pages, or a recurring standup you want to update without a new poster."
description="A meeting link doesn't change often, but the same setup works for anything that does - front-desk WiFi, room booking pages, or a recurring standup you want to update without a new poster."
links={[
{
href: '/dynamic-qr-code-generator',
title: 'Dynamic QR Code Generator',
description:
'Point one printed code at a new link or meeting anytime no reprint needed.',
'Point one printed code at a new link or meeting anytime - no reprint needed.',
ctaLabel: 'Create dynamic QR code',
},
{

View File

@@ -84,7 +84,7 @@ export default function TextGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="url" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -139,7 +139,7 @@ export default function TextQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-emerald-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-emerald-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">

View File

@@ -90,7 +90,7 @@ export default function TiktokGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="social" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -10,24 +10,24 @@ import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free TikTok QR Code Generator | Get Followers | QR Master',
absolute: 'TikTok QR Code Generator - Free, No Signup',
},
description: 'Create a QR code for your TikTok profile. TikTok QR Code erstellen. Scanners follow you instantly. Customize with colors and frames.',
description: 'Turn your TikTok profile into a scannable QR code. One scan opens your profile in the app. Add your colors and logo, download PNG or SVG. Free, no signup.',
keywords: ['tiktok qr code', 'tik tok qr generator', 'tiktok follow qr', 'social media qr code', 'tiktok profile qr', 'tiktok qr code erstellen', 'tiktok profil qr code', 'mehr tiktok follower', 'tiktok scanncode'],
alternates: {
canonical: 'https://www.qrmaster.net/tools/tiktok-qr-code',
},
openGraph: {
title: 'Free TikTok QR Code Generator | QR Master',
description: 'Generate QR codes to grow your TikTok following. Instant app redirect.',
title: 'TikTok QR Code Generator - Free, No Signup',
description: 'One scan opens your TikTok profile in the app. Your colors, your logo, PNG or SVG.',
type: 'website',
url: 'https://www.qrmaster.net/tools/tiktok-qr-code',
images: [{ url: '/og-tiktok-generator.png', width: 1200, height: 630 }],
},
twitter: {
card: 'summary_large_image',
title: 'Free TikTok QR Code Generator',
description: 'Create QR codes for TikTok. Get more followers.',
title: 'TikTok QR Code Generator - Free, No Signup',
description: 'One scan opens your TikTok profile in the app. Your colors, your logo, PNG or SVG.',
},
robots: {
index: true,
@@ -140,7 +140,7 @@ export default function TiktokQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-cyan-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-cyan-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">

View File

@@ -90,7 +90,7 @@ export default function TwitterGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="social" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -10,24 +10,24 @@ import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free Twitter (X) QR Code Generator | Follow & Connect | QR Master',
absolute: 'X (Twitter) QR Code Generator - Free, No Signup',
},
description: 'Create a QR code for your X (Twitter) profile. Twitter QR Code erstellen. Scanners follow you instantly. Free & Customizable.',
description: 'Turn your X profile into a scannable QR code. One scan opens your profile in the app. Add your colors and logo, download PNG or SVG. Free, no signup required.',
keywords: ['twitter qr code', 'x qr generator', 'twitter follow qr', 'social media qr code', 'x profile qr', 'twitter qr code erstellen', 'x qr code erstellen', 'twitter profil qr code', 'x profil qr code'],
alternates: {
canonical: 'https://www.qrmaster.net/tools/twitter-qr-code',
},
openGraph: {
title: 'Free Twitter (X) QR Code Generator | QR Master',
description: 'Generate QR codes to grow your X (Twitter) following. Instant app redirect.',
title: 'X (Twitter) QR Code Generator - Free, No Signup',
description: 'One scan opens your X profile in the app. Your colors, your logo, PNG or SVG.',
type: 'website',
url: 'https://www.qrmaster.net/tools/twitter-qr-code',
images: [{ url: '/og-twitter-generator.png', width: 1200, height: 630 }],
},
twitter: {
card: 'summary_large_image',
title: 'Free Twitter (X) QR Code Generator',
description: 'Create QR codes for X. Boost your following.',
title: 'X (Twitter) QR Code Generator - Free, No Signup',
description: 'One scan opens your X profile in the app. Your colors, your logo, PNG or SVG.',
},
robots: {
index: true,
@@ -139,7 +139,7 @@ export default function TwitterQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-blue-500 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-blue-500"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
@@ -301,7 +301,7 @@ export default function TwitterQRCodePage() {
<article className="bg-slate-50 rounded-xl border border-slate-200 p-6">
<h3 className="font-bold text-slate-900 mb-2">Live commentary</h3>
<p className="text-slate-600 text-sm leading-relaxed">
Sports venues, meetups, and community events display the code where the live conversation happens the moment people want to join in.
Sports venues, meetups, and community events display the code where the live conversation happens - the moment people want to join in.
</p>
</article>
</div>
@@ -310,7 +310,7 @@ export default function TwitterQRCodePage() {
<a href="/dynamic-qr-code-generator" className="font-semibold text-slate-900 hover:underline">dynamic QR code</a>{' '}
with{' '}
<a href="/qr-code-tracking" className="font-semibold text-slate-900 hover:underline">QR code tracking</a>{' '}
the printed code stays valid even if the destination changes.
- the printed code stays valid even if the destination changes.
</p>
</div>
</section>

View File

@@ -84,7 +84,7 @@ export default function URLGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="url" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -10,24 +10,24 @@ import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free URL QR Code Generator | Link to Any Website | QR Master',
absolute: 'URL QR Code Generator - Free, No Signup, Never Expires',
},
description: 'Create a QR code for your website. Erstelle kostenlos einen QR Code für deine Webseite. Static and free forever. Link zu jeder URL.',
description: 'Paste any link, get a scannable QR code. Unlimited static codes that never expire, on every plan including free. Download print-ready PNG or SVG. No signup.',
keywords: ['url qr code', 'website qr code', 'link qr generator', 'free qr code generator', 'url to qr', 'qr code erstellen', 'link qr code erstellen', 'website qr code generator', 'kostenlos qr code erstellen', 'url zu qr code', 'webseite verlinken qr'],
alternates: {
canonical: 'https://www.qrmaster.net/tools/url-qr-code',
},
openGraph: {
title: 'Free URL QR Code Generator | QR Master',
description: 'Turn any URL into a QR code. Share websites instantly.',
title: 'URL QR Code Generator - Free, No Signup, Never Expires',
description: 'Paste any link, get a scannable code. Unlimited static codes that never expire.',
type: 'website',
url: 'https://www.qrmaster.net/tools/url-qr-code',
images: [{ url: '/og-url-generator.png', width: 1200, height: 630 }],
},
twitter: {
card: 'summary_large_image',
title: 'Free URL QR Code Generator',
description: 'Create QR codes for any link. Instant and free.',
title: 'URL QR Code Generator - Free, No Signup, Never Expires',
description: 'Paste any link, get a scannable code. Unlimited static codes that never expire.',
},
robots: {
index: true,
@@ -123,7 +123,7 @@ export default function URLQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-emerald-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-emerald-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
@@ -232,13 +232,13 @@ export default function URLQRCodePage() {
URL QR Code Use Cases: When to Use a Link QR Code
</h2>
<div className="prose prose-slate max-w-none">
<p className="text-lg text-slate-600 mb-6">A URL QR code is the simplest and most universal type of QR code: scan it, and a browser opens a specific web address. That simplicity is its strength. Any printed material that references a website becomes interactive the moment you add a URL QR code no app required, no account needed, no special hardware beyond a standard smartphone camera.</p>
<p className="text-lg text-slate-600 mb-6">A URL QR code is the simplest and most universal type of QR code: scan it, and a browser opens a specific web address. That simplicity is its strength. Any printed material that references a website becomes interactive the moment you add a URL QR code - no app required, no account needed, no special hardware beyond a standard smartphone camera.</p>
<h3 className="text-xl font-bold text-slate-900 mt-8 mb-4">Marketing Materials: Flyers, Brochures &amp; Posters</h3>
<p className="text-slate-600 mb-4">Printed marketing materials have a fundamental limitation: they cannot be clicked. A URL QR code solves this by acting as a physical hyperlink. Flyers for an event can link directly to a registration page, eliminating the step of typing a long URL. Brochures can link to a detailed product page, a video demo, or a portfolio. Outdoor posters can point to a landing page with a time-sensitive offer. The critical design principle is placement and contrast: the QR code should appear on a clean background with at least 1 cm of quiet zone around it, and the call-to-action label such as "Scan to book your spot" should tell users exactly what they will find before they scan. A URL QR code effectively turns print advertising into a measurable digital funnel.</p>
<p className="text-slate-600 mb-4">Printed marketing materials have a fundamental limitation: they cannot be clicked. A URL QR code solves this by acting as a physical hyperlink. Flyers for an event can link directly to a registration page, eliminating the step of typing a long URL. Brochures can link to a detailed product page, a video demo, or a portfolio. Outdoor posters can point to a landing page with a time-sensitive offer. The critical design principle is placement and contrast: the QR code should appear on a clean background with at least 1 cm of quiet zone around it, and the call-to-action label - such as "Scan to book your spot" - should tell users exactly what they will find before they scan. A URL QR code effectively turns print advertising into a measurable digital funnel.</p>
<h3 className="text-xl font-bold text-slate-900 mt-8 mb-4">Product Packaging &amp; Labels</h3>
<p className="text-slate-600 mb-4">Product packaging is increasingly the first place customers turn for more information after purchase. A URL QR code on a label can link to setup instructions, video tutorials, an FAQ page, a warranty registration form, or a support portal replacing bulky printed manuals and keeping the information always up to date. For consumables and repeat-purchase products, the QR code can link to a reorder page, transforming packaging from a cost centre into a sales channel. Food and beverage brands use URL QR codes to link to nutritional databases, sourcing information, and sustainability reports. The key advantage over a printed URL is that customers are far more likely to scan than to type a long web address especially when they are already holding the product in their hands.</p>
<p className="text-slate-600 mb-4">Product packaging is increasingly the first place customers turn for more information after purchase. A URL QR code on a label can link to setup instructions, video tutorials, an FAQ page, a warranty registration form, or a support portal - replacing bulky printed manuals and keeping the information always up to date. For consumables and repeat-purchase products, the QR code can link to a reorder page, transforming packaging from a cost centre into a sales channel. Food and beverage brands use URL QR codes to link to nutritional databases, sourcing information, and sustainability reports. The key advantage over a printed URL is that customers are far more likely to scan than to type a long web address - especially when they are already holding the product in their hands.</p>
<h3 className="text-xl font-bold text-slate-900 mt-8 mb-4">Dynamic vs Static URL QR Codes</h3>
<p className="text-slate-600 mb-4">A static URL QR code encodes the destination directly into the pattern it is permanent, requires no server, and works forever, but it cannot be changed after printing. If your URL changes, the code breaks. A <a href="/dynamic-qr-code-generator" className="text-indigo-600 underline hover:text-indigo-800">dynamic QR code</a> works differently: it encodes a short redirect URL that you control, so you can update the destination at any time without reprinting the physical code. Dynamic codes are the right choice for anything printed at scale (packaging runs, banners, long-running campaigns) where reprinting after a URL change would be costly. They also unlock <a href="/qr-code-tracking" className="text-indigo-600 underline hover:text-indigo-800">scan analytics</a> data on how many people scanned, from which device, country, and at what time which static codes cannot provide. For one-off or low-stakes uses like a personal project or a single event flyer, a free static URL QR code is perfectly sufficient.</p>
<p className="text-slate-600 mb-4">A static URL QR code encodes the destination directly into the pattern - it is permanent, requires no server, and works forever, but it cannot be changed after printing. If your URL changes, the code breaks. A <a href="/dynamic-qr-code-generator" className="text-indigo-600 underline hover:text-indigo-800">dynamic QR code</a> works differently: it encodes a short redirect URL that you control, so you can update the destination at any time without reprinting the physical code. Dynamic codes are the right choice for anything printed at scale (packaging runs, banners, long-running campaigns) where reprinting after a URL change would be costly. They also unlock <a href="/qr-code-tracking" className="text-indigo-600 underline hover:text-indigo-800">scan analytics</a> - data on how many people scanned, from which device, country, and at what time - which static codes cannot provide. For one-off or low-stakes uses like a personal project or a single event flyer, a free static URL QR code is perfectly sufficient.</p>
</div>
</div>
</section>

View File

@@ -120,7 +120,7 @@ export default function VCardGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="vcard" />
<div className="w-full max-w-6xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -11,9 +11,9 @@ import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free vCard QR Code Generator | QR Master',
absolute: 'vCard QR Code Generator - Save to Contacts in One Tap',
},
description: 'Create a vCard QR code for your business card. Share contact details instantly — customers scan and save with one tap. Free, no signup required.',
description: 'Put your contact details on a business card as a QR code. One scan saves you to their phone - no typing, no app. Download print-ready PNG or SVG. No signup.',
keywords: ['vcard qr code', 'business card qr code', 'contact qr generator', 'digital business card', 'add to contacts qr', 'visitenkarte qr code', 'digitale visitenkarte erstellen', 'kontakt qr code', 'elektronische visitenkarte', 'vcard erstellen kostenlos'],
alternates: {
canonical: 'https://www.qrmaster.net/tools/vcard-qr-code',
@@ -23,16 +23,16 @@ export const metadata: Metadata = {
},
},
openGraph: {
title: 'Free vCard QR Code Generator | QR Master',
description: 'Turn your contact info into a QR code. The modern way to share your business card.',
title: 'vCard QR Code Generator - Save to Contacts in One Tap',
description: 'One scan saves you to their phone. No typing, no app. Print-ready PNG or SVG.',
type: 'website',
url: 'https://www.qrmaster.net/tools/vcard-qr-code',
images: [{ url: '/og-vcard-generator.png', width: 1200, height: 630 }],
},
twitter: {
card: 'summary_large_image',
title: 'Free vCard QR Code Generator',
description: 'Create QR codes for contact sharing. Instant and free.',
title: 'vCard QR Code Generator - Save to Contacts in One Tap',
description: 'One scan saves you to their phone. No typing, no app. Print-ready PNG or SVG.',
},
robots: {
index: true,
@@ -105,7 +105,7 @@ const jsonLd = {
},
'Can I test the QR code before printing?': {
question: 'Can I test the QR code before printing?',
answer: 'Yes and you should. Scan the generated code with your own phone camera before sending it to print. If the contact card opens with the correct name, phone, and email, the printed version will behave identically.',
answer: 'Yes - and you should. Scan the generated code with your own phone camera before sending it to print. If the contact card opens with the correct name, phone, and email, the printed version will behave identically.',
},
}),
],
@@ -143,7 +143,7 @@ export default function VCardQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-rose-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-rose-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
@@ -258,7 +258,7 @@ export default function VCardQRCodePage() {
</div>
</section>
{/* WHY DIGITAL BUSINESS CARDS STATISTICS */}
{/* WHY DIGITAL BUSINESS CARDS - STATISTICS */}
<section className="py-16 px-4 sm:px-6 lg:px-8 bg-white">
<div className="max-w-4xl mx-auto">
<div className="flex items-center gap-2 mb-3">
@@ -276,7 +276,7 @@ export default function VCardQRCodePage() {
<div className="bg-rose-50 border border-rose-100 rounded-2xl p-6">
<div className="text-4xl font-extrabold text-rose-600 mb-2">88%</div>
<p className="text-slate-700 text-sm leading-relaxed mb-3">
of traditional paper business cards are thrown away within a week of being handed out. A vCard QR code on your card saves contact details instantly no manual typing, no lost connections.
of traditional paper business cards are thrown away within a week of being handed out. A vCard QR code on your card saves contact details instantly - no manual typing, no lost connections.
</p>
<p className="text-xs text-slate-500">
Source: <a href="https://www.adobe.com/express/learn/blog/business-card-statistics" target="_blank" rel="noopener noreferrer" className="underline hover:text-slate-700">Adobe Business Research</a>
@@ -286,10 +286,10 @@ export default function VCardQRCodePage() {
<div className="bg-orange-50 border border-orange-100 rounded-2xl p-6">
<div className="text-4xl font-extrabold text-orange-600 mb-2">1-tap save</div>
<p className="text-slate-700 text-sm leading-relaxed mb-3">
Instead of asking someone to manually type your name, phone, and email a vCard QR code transfers all contact fields (name, phone, email, company, URL) directly into their phone's address book with a single scan.
Instead of asking someone to manually type your name, phone, and email - a vCard QR code transfers all contact fields (name, phone, email, company, URL) directly into their phone's address book with a single scan.
</p>
<p className="text-xs text-slate-500">
vCard 3.0 / VCF format supported natively by iOS and Android
vCard 3.0 / VCF format - supported natively by iOS and Android
</p>
</div>
</div>
@@ -307,25 +307,25 @@ export default function VCardQRCodePage() {
Where a vCard QR Code Pays Off
</h2>
<p className="text-slate-600 text-center mb-10 max-w-2xl mx-auto">
A vCard QR code works anywhere someone should save your details in seconds without typing anything.
A vCard QR code works anywhere someone should save your details in seconds - without typing anything.
</p>
<div className="grid md:grid-cols-3 gap-6">
<article className="bg-white rounded-xl shadow-sm border border-slate-200 p-6">
<h3 className="font-bold text-slate-900 mb-2">Business cards</h3>
<p className="text-slate-600 text-sm leading-relaxed">
Print the QR code on the back of your paper card. Instead of your card ending up in a drawer, your contact lands in the address book name, phone, email, and company in one tap.
Print the QR code on the back of your paper card. Instead of your card ending up in a drawer, your contact lands in the address book - name, phone, email, and company in one tap.
</p>
</article>
<article className="bg-white rounded-xl shadow-sm border border-slate-200 p-6">
<h3 className="font-bold text-slate-900 mb-2">Events &amp; trade shows</h3>
<p className="text-slate-600 text-sm leading-relaxed">
Put it on your badge, booth signage, or presentation slides. Attendees scan while you talk no fumbling with cards, and no follow-up emails asking for your details.
Put it on your badge, booth signage, or presentation slides. Attendees scan while you talk - no fumbling with cards, and no follow-up emails asking for your details.
</p>
</article>
<article className="bg-white rounded-xl shadow-sm border border-slate-200 p-6">
<h3 className="font-bold text-slate-900 mb-2">Everyday networking</h3>
<p className="text-slate-600 text-sm leading-relaxed">
Save it as your phone wallpaper or in your wallet. Any spontaneous meeting becomes a saved contact perfect for freelancers, sales teams, and consultants.
Save it as your phone wallpaper or in your wallet. Any spontaneous meeting becomes a saved contact - perfect for freelancers, sales teams, and consultants.
</p>
</article>
</div>
@@ -393,11 +393,11 @@ export default function VCardQRCodePage() {
/>
<FaqItem
question="Is the vCard QR code generator free?"
answer="Yes. Creating a static vCard QR code is completely free no signup, no watermark, no expiry. Generate, download, and print as many as you need."
answer="Yes. Creating a static vCard QR code is completely free - no signup, no watermark, no expiry. Generate, download, and print as many as you need."
/>
<FaqItem
question="Can I test the QR code before printing?"
answer="Yes scan the generated code with your own phone camera first. If the contact card opens with the correct details, the printed version will behave identically."
answer="Yes - scan the generated code with your own phone camera first. If the contact card opens with the correct details, the printed version will behave identically."
/>
</div>
</div>

View File

@@ -95,7 +95,7 @@ export default function WhatsappGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="social" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -139,7 +139,7 @@ export default function WhatsappQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-green-300 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-green-300"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
@@ -280,13 +280,13 @@ export default function WhatsappQRCodePage() {
How to Use WhatsApp QR Codes for Business
</h2>
<div className="prose prose-slate max-w-none">
<p className="text-lg text-slate-600 mb-6">WhatsApp QR codes remove the biggest obstacle between a potential customer and a conversation: saving a phone number. Instead of typing digits manually, customers scan once and land directly in a chat with your pre-filled message already loaded and ready to send. For businesses that rely on fast, personal communication, that friction reduction is significant.</p>
<p className="text-lg text-slate-600 mb-6">WhatsApp QR codes remove the biggest obstacle between a potential customer and a conversation: saving a phone number. Instead of typing digits manually, customers scan once and land directly in a chat - with your pre-filled message already loaded and ready to send. For businesses that rely on fast, personal communication, that friction reduction is significant.</p>
<h3 className="text-xl font-bold text-slate-900 mt-8 mb-4">Customer Support &amp; Service Teams</h3>
<p className="text-slate-600 mb-4">Support teams can use WhatsApp QR codes on help pages, packaging inserts, and warranty cards to give customers a direct line without publishing a number publicly in plain text. The pre-filled message field is especially powerful here: you can pre-load context such as "Hi, I need help with my order #" so agents receive structured requests from the start. This reduces back-and-forth and speeds up resolution time. Place the QR code at the end of a printed receipt or inside a product box to catch customers at the exact moment they might need help.</p>
<h3 className="text-xl font-bold text-slate-900 mt-8 mb-4">Restaurants, Cafes &amp; Retail Stores</h3>
<p className="text-slate-600 mb-4">Physical businesses benefit the most from WhatsApp QR codes placed at the point of purchase. A cafe can display a QR code at the counter that pre-fills "I'd like to place a takeaway order" customers scan, confirm their order via WhatsApp, and staff prepare it without phone calls interrupting busy periods. Restaurants can use QR codes on table cards for reservations or feedback. Retail stores can place them near fitting rooms so shoppers can ask about sizes or alternative products without waiting for staff. The key is pairing the QR code with a clear call-to-action label like "Chat with us on WhatsApp" and placing it at eye level.</p>
<p className="text-slate-600 mb-4">Physical businesses benefit the most from WhatsApp QR codes placed at the point of purchase. A cafe can display a QR code at the counter that pre-fills "I'd like to place a takeaway order" - customers scan, confirm their order via WhatsApp, and staff prepare it without phone calls interrupting busy periods. Restaurants can use QR codes on table cards for reservations or feedback. Retail stores can place them near fitting rooms so shoppers can ask about sizes or alternative products without waiting for staff. The key is pairing the QR code with a clear call-to-action label like "Chat with us on WhatsApp" and placing it at eye level.</p>
<h3 className="text-xl font-bold text-slate-900 mt-8 mb-4">Marketing Campaigns &amp; Lead Generation</h3>
<p className="text-slate-600 mb-4">WhatsApp QR codes on printed flyers, outdoor posters, or event banners create a measurable bridge from offline marketing to a live conversation. Unlike a website URL, a WhatsApp link initiates a direct dialogue which converts at a much higher rate than a contact form. For lead generation campaigns, pre-fill the message with the campaign name or offer so you can track which placement is driving inbound chats. To measure QR code performance across multiple placements, combine your WhatsApp QR code strategy with <a href="/qr-code-tracking" className="text-[#128C7E] underline hover:text-[#075E54]">QR code scan analytics</a> to see which posters, flyers, or locations generate the most engagement.</p>
<p className="text-slate-600 mb-4">WhatsApp QR codes on printed flyers, outdoor posters, or event banners create a measurable bridge from offline marketing to a live conversation. Unlike a website URL, a WhatsApp link initiates a direct dialogue - which converts at a much higher rate than a contact form. For lead generation campaigns, pre-fill the message with the campaign name or offer so you can track which placement is driving inbound chats. To measure QR code performance across multiple placements, combine your WhatsApp QR code strategy with <a href="/qr-code-tracking" className="text-[#128C7E] underline hover:text-[#075E54]">QR code scan analytics</a> to see which posters, flyers, or locations generate the most engagement.</p>
</div>
</div>
</section>

View File

@@ -96,7 +96,7 @@ export default function WiFiGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="wifi" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -158,7 +158,7 @@ export default function WiFiQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-emerald-400 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-emerald-400"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
@@ -289,7 +289,7 @@ export default function WiFiQRCodePage() {
</div>
</section>
{/* WHY WIFI QR CODES MATTER STATISTICS */}
{/* WHY WIFI QR CODES MATTER - STATISTICS */}
<section className="py-16 px-4 sm:px-6 lg:px-8 bg-white">
<div className="max-w-4xl mx-auto">
<div className="flex items-center gap-2 mb-3">
@@ -300,14 +300,14 @@ export default function WiFiQRCodePage() {
Why WiFi QR Codes Improve Customer Experience
</h2>
<p className="text-slate-600 mb-10 max-w-2xl">
A <strong>WiFi QR code</strong> eliminates the single biggest friction point between your guest and your network manual password entry.
A <strong>WiFi QR code</strong> eliminates the single biggest friction point between your guest and your network - manual password entry.
</p>
<div className="grid md:grid-cols-2 gap-6 mb-8">
<div className="bg-emerald-50 border border-emerald-100 rounded-2xl p-6">
<div className="text-3xl font-extrabold text-emerald-600 mb-2">#1 Amenity</div>
<p className="text-slate-700 text-sm leading-relaxed mb-3">
Free WiFi is rated the most important hotel amenity by guests ahead of breakfast, parking, and loyalty points. Instant, frictionless access directly impacts satisfaction scores and repeat bookings.
Free WiFi is rated the most important hotel amenity by guests - ahead of breakfast, parking, and loyalty points. Instant, frictionless access directly impacts satisfaction scores and repeat bookings.
</p>
<p className="text-xs text-slate-500">
Source: <a href="https://www.jdpower.com/business/travel-hospitality/hotel-guest-satisfaction-study" target="_blank" rel="noopener noreferrer" className="underline hover:text-slate-700">J.D. Power Hotel Guest Satisfaction Study</a>
@@ -317,10 +317,10 @@ export default function WiFiQRCodePage() {
<div className="bg-blue-50 border border-blue-100 rounded-2xl p-6">
<div className="text-3xl font-extrabold text-blue-600 mb-2">Effort = Loyalty</div>
<p className="text-slate-700 text-sm leading-relaxed mb-3">
Reducing customer effort like eliminating manual password entry is the single strongest predictor of customer loyalty. The lower the effort, the higher the repeat visit rate and positive word-of-mouth.
Reducing customer effort - like eliminating manual password entry - is the single strongest predictor of customer loyalty. The lower the effort, the higher the repeat visit rate and positive word-of-mouth.
</p>
<p className="text-xs text-slate-500">
Source: <a href="https://hbr.org/2010/07/stop-trying-to-delight-your-customers" target="_blank" rel="noopener noreferrer" className="underline hover:text-slate-700">Harvard Business Review "Stop Trying to Delight Your Customers"</a> (Customer Effort Score research)
Source: <a href="https://hbr.org/2010/07/stop-trying-to-delight-your-customers" target="_blank" rel="noopener noreferrer" className="underline hover:text-slate-700">Harvard Business Review - "Stop Trying to Delight Your Customers"</a> (Customer Effort Score research)
</p>
</div>
</div>
@@ -347,7 +347,7 @@ export default function WiFiQRCodePage() {
<div className="space-y-4">
<FaqItem
question="Is it safe to enter my WiFi password here?"
answer="Yes, completely safe. This tool uses client-side processing, meaning your WiFi password never leaves your device. It's processed locally in your browser to generate the QR codeno data is sent to any server."
answer="Yes, completely safe. This tool uses client-side processing, meaning your WiFi password never leaves your device. It's processed locally in your browser to generate the QR code-no data is sent to any server."
/>
<FaqItem
question="Do WiFi QR codes work on iPhone and Android?"

View File

@@ -83,7 +83,7 @@ export default function YoutubeGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="social" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -139,7 +139,7 @@ export default function YoutubeQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-red-300 opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-red-300"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">

View File

@@ -115,7 +115,7 @@ export default function ZoomGenerator() {
return (
<>
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} />
<PostDownloadPopup open={showPopup} onClose={() => setShowPopup(false)} variant="meeting" />
<div className="w-full max-w-5xl mx-auto px-4 md:px-6">
{/* Main Generator Card */}

View File

@@ -10,24 +10,24 @@ import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils
// SEO Optimized Metadata
export const metadata: Metadata = {
title: {
absolute: 'Free Zoom QR Code Generator | Join Meetings Instantly | QR Master',
absolute: 'Zoom Meeting QR Code Generator - Scan to Join, Free',
},
description: 'Create a QR code for your Zoom meeting. Zoom QR Code erstellen. Attendees scan to join instantly. Perfect for conference rooms & invites.',
description: 'Turn any Zoom meeting link into a QR code. Attendees scan and join - no typing meeting IDs. Print it for conference rooms, invites and event signage.',
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.',
title: 'Zoom Meeting QR Code Generator - Scan to Join, Free',
description: 'Attendees scan and join. No typing meeting IDs. Print it for conference rooms and invites.',
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.',
title: 'Zoom Meeting QR Code Generator - Scan to Join, Free',
description: 'Attendees scan and join. No typing meeting IDs. Print it for conference rooms and invites.',
},
robots: {
index: true,
@@ -130,7 +130,7 @@ export default function ZoomQRCodePage() {
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-white opacity-75"></span>
<span className="relative inline-flex rounded-full h-2 w-2 bg-white"></span>
</span>
Free Tool No Signup Required
Free Tool - No Signup Required
</div>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">

View File

@@ -104,9 +104,9 @@ const categories: Array<{
name: 'Bulk QR Creation',
qrMaster: {
rating: 'strong',
summary: 'Up to 1,000 codes per CSV/Excel upload. Business plan (EUR 29/month).',
summary: 'Per CSV/Excel upload: 1,000 static codes or 500 dynamic. Business plan (EUR 29/month).',
detail:
'The Business plan includes CSV and Excel bulk upload for generating up to 1,000 unique QR codes in one batch. Each code in the batch can have a different destination URL, label, campaign name, and UTM parameters. The batch downloads as a ZIP of SVG and PNG files. This is designed for product packaging, event programs, direct mail campaigns, and retail displays.',
'The Business plan includes CSV and Excel bulk upload. You pick static or dynamic per upload: up to 1,000 static codes in one batch, or up to 500 dynamic ones, that cap being the Business dynamic allowance. Each code in the batch can have a different destination URL, label, campaign name, and UTM parameters. The batch downloads as a ZIP of SVG and PNG files. This is designed for product packaging, event programs, direct mail campaigns, and retail displays.',
},
beaconstac: {
rating: 'mixed',
@@ -371,7 +371,7 @@ export default function VsBeaconstacPage() {
},
{
label: 'You need bulk creation',
body: 'for product packaging, print campaigns, or events - up to 1,000 codes per batch at EUR 29/month',
body: 'for product packaging, print campaigns, or events - 1,000 static or 500 dynamic per batch at EUR 29/month',
},
{
label: 'You want a simple interface',
@@ -449,7 +449,7 @@ export default function VsBeaconstacPage() {
qrMaster: 'EUR 9/month',
},
{
useCase: 'Bulk creation (500-1,000 codes)',
useCase: 'Bulk creation (1,000 static or 500 dynamic)',
beaconstac: 'Enterprise tier - custom pricing',
qrMaster: 'EUR 29/month (Business plan)',
},

View File

@@ -97,14 +97,14 @@ export async function POST(request: NextRequest) {
triggerLifecycleScoring(user.id, 'signup');
// Send welcome email (fire-and-forget never block signup)
// Send welcome email (fire-and-forget - never block signup)
try {
await sendWelcomeEmail(user.email, user.name ?? 'there');
} catch (emailError) {
console.error('Welcome email failed:', emailError);
}
// Meta Conversions API CompleteRegistration event
// Meta Conversions API - CompleteRegistration event
sendConversionEvent({
eventName: 'CompleteRegistration',
userData: {

View File

@@ -1,8 +1,14 @@
import { NextRequest, NextResponse } from 'next/server';
import { db } from '@/lib/db';
import { sendActivationNudgeEmail, sendUpgradeNudgeEmail, sendThirtyDayNudgeEmail } from '@/lib/email';
import {
sendActivationNudgeEmail,
sendUpgradeNudgeEmail,
sendThirtyDayNudgeEmail,
sendFirstScanEmail,
} from '@/lib/email';
import { DYNAMIC_QR_LIMITS } from '@/lib/plans';
// Protect with a shared secret set CRON_SECRET in Vercel env vars
// Protect with a shared secret - set CRON_SECRET in Vercel env vars
function isAuthorized(request: NextRequest): boolean {
const authHeader = request.headers.get('authorization');
const cronSecret = process.env.CRON_SECRET;
@@ -17,14 +23,17 @@ export async function GET(request: NextRequest) {
const now = new Date();
const threeDaysAgo = new Date(now.getTime() - 3 * 24 * 60 * 60 * 1000);
const sevenDaysAgo = new Date(now.getTime() - 7 * 24 * 60 * 60 * 1000);
const thirtyDaysAgo = new Date(now.getTime() - 30 * 24 * 60 * 60 * 1000);
const oneDayAgo = new Date(now.getTime() - 24 * 60 * 60 * 1000);
let activationSent = 0;
let upgradeSent = 0;
let limitSent = 0;
let firstScanSent = 0;
let thirtyDaySent = 0;
// Day-3: signed up > 3 days ago, never created a QR code, hasn't received this email yet
// ── Day 3: signed up, never created anything ─────────────────────────────
// Unchanged. This one is legitimately time-based: the absence of activity is
// the trigger, and absence only becomes meaningful after some time passes.
const activationCandidates = await db.user.findMany({
where: {
createdAt: { lt: threeDaysAgo },
@@ -50,34 +59,83 @@ export async function GET(request: NextRequest) {
}
}
// Day-7: signed up > 7 days ago, has ≥1 QR code, still FREE, hasn't received this email yet
const upgradeCandidates = await db.user.findMany({
// ── Limit reached: behaviour, not calendar ───────────────────────────────
// This replaces the old day-7 upgrade nudge, which fired at day 7 regardless
// of usage. Someone with a single code was getting a mail about a ceiling
// they had not come near - an upgrade pitch to a person with no pain, sent
// under the founder's own name. Now it only goes to people actually blocked.
const freeUsers = await db.user.findMany({
where: {
createdAt: { lt: sevenDaysAgo },
upgradeNudgeSentAt: null,
plan: 'FREE',
limitReachedNudgeSentAt: null,
},
include: {
_count: { select: { qrCodes: true } },
},
select: { id: true, email: true, name: true },
});
for (const user of upgradeCandidates) {
if (user._count.qrCodes > 0 && user.email) {
try {
await sendUpgradeNudgeEmail(user.email, user.name ?? 'there', user._count.qrCodes);
await db.user.update({
where: { id: user.id },
data: { upgradeNudgeSentAt: now },
});
upgradeSent++;
} catch (err) {
console.error(`Upgrade nudge failed for ${user.email}:`, err);
}
for (const user of freeUsers) {
if (!user.email) continue;
const activeDynamic = await db.qRCode.count({
where: { userId: user.id, type: 'DYNAMIC', status: 'ACTIVE' },
});
if (activeDynamic < DYNAMIC_QR_LIMITS.FREE) continue;
try {
await sendUpgradeNudgeEmail(user.email, user.name ?? 'there', activeDynamic);
await db.user.update({
where: { id: user.id },
data: { limitReachedNudgeSentAt: now },
});
limitSent++;
} catch (err) {
console.error(`Limit nudge failed for ${user.email}:`, err);
}
}
// Day-30: signed up > 30 days ago, has ≥1 QR code, still FREE, hasn't received this email yet
// ── First scan: the only trigger that is not a date ──────────────────────
// Fires the day after the first scan, so the event is still recent enough to
// be an occasion rather than a fact from the archive. The 7-day floor stops
// this from firing for historic users whose first scan was months ago.
const firstScanCandidates = await db.user.findMany({
where: {
firstScanAt: { not: null, lte: oneDayAgo },
firstScanNudgeSentAt: null,
},
select: { id: true, email: true, name: true, firstScanAt: true },
});
for (const user of firstScanCandidates) {
if (!user.email || !user.firstScanAt) continue;
const scan = await db.qRScan.findFirst({
where: { qr: { userId: user.id } },
orderBy: { ts: 'asc' },
select: { ts: true, device: true, country: true, qr: { select: { title: true } } },
});
if (!scan) continue;
try {
await sendFirstScanEmail(user.email, user.name ?? 'there', {
qrTitle: scan.qr?.title ?? 'your QR code',
device: scan.device,
country: scan.country,
ts: scan.ts,
});
await db.user.update({
where: { id: user.id },
data: { firstScanNudgeSentAt: now },
});
firstScanSent++;
} catch (err) {
console.error(`First scan mail failed for ${user.email}:`, err);
}
}
// ── Day 30: built around the user's own numbers ─────────────────────────
// The old version argued from branding and cited a pattern among Pro users
// that was never sourced. This one argues from the scan count the user
// actually produced, which needs no testimonial to be believable.
const thirtyDayCandidates = await db.user.findMany({
where: {
createdAt: { lt: thirtyDaysAgo },
@@ -90,24 +148,41 @@ export async function GET(request: NextRequest) {
});
for (const user of thirtyDayCandidates) {
if (user._count.qrCodes > 0 && user.email) {
try {
await sendThirtyDayNudgeEmail(user.email, user.name ?? 'there', user._count.qrCodes);
await db.user.update({
where: { id: user.id },
data: { thirtyDayNudgeSentAt: now },
});
thirtyDaySent++;
} catch (err) {
console.error(`30-day nudge failed for ${user.email}:`, err);
}
if (user._count.qrCodes === 0 || !user.email) continue;
const scanCount = await db.qRScan.count({
where: {
qr: { userId: user.id },
ts: { gte: thirtyDaysAgo },
},
});
// No scans means the pitch has no evidence behind it. Staying quiet is
// better than sending "your codes were scanned 0 times this month".
if (scanCount === 0) continue;
try {
await sendThirtyDayNudgeEmail(
user.email,
user.name ?? 'there',
user._count.qrCodes,
scanCount
);
await db.user.update({
where: { id: user.id },
data: { thirtyDayNudgeSentAt: now },
});
thirtyDaySent++;
} catch (err) {
console.error(`30-day nudge failed for ${user.email}:`, err);
}
}
return NextResponse.json({
ok: true,
activationNudgesSent: activationSent,
upgradeNudgesSent: upgradeSent,
limitNudgesSent: limitSent,
firstScanEmailsSent: firstScanSent,
thirtyDayNudgesSent: thirtyDaySent,
});
}

View File

@@ -0,0 +1,129 @@
import { NextRequest, NextResponse } from 'next/server';
import { getSessionUserId } from '@/lib/session';
import { db } from '@/lib/db';
import { csrfProtection } from '@/lib/csrf';
import { z } from 'zod';
/**
* Saved QR design presets.
*
* Business-only. The value here is repeatability, not novelty: an agency running
* several clients needs client A to look identical across every code, including
* the 500 that came out of one spreadsheet upload.
*/
const MAX_PRESETS = 50;
const presetSchema = z.object({
name: z.string().min(1, 'Name is required').max(60),
style: z.record(z.any()),
});
function isAllowed(plan: string | undefined): boolean {
return plan === 'BUSINESS' || plan === 'ENTERPRISE';
}
export async function GET() {
const userId = getSessionUserId();
if (!userId) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
}
const presets = await db.qRDesignPreset.findMany({
where: { userId },
orderBy: { updatedAt: 'desc' },
});
return NextResponse.json(presets);
}
export async function POST(request: NextRequest) {
const csrfCheck = csrfProtection(request);
if (!csrfCheck.valid) {
return NextResponse.json({ error: csrfCheck.error }, { status: 403 });
}
const userId = getSessionUserId();
if (!userId) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
}
const user = await db.user.findUnique({
where: { id: userId },
select: { plan: true },
});
if (!isAllowed(user?.plan)) {
return NextResponse.json(
{
error: 'Upgrade required',
message: 'Saved design presets are part of the Business plan.',
plan: user?.plan ?? 'FREE',
},
{ status: 403 }
);
}
let data;
try {
data = presetSchema.parse(await request.json());
} catch (err) {
if (err instanceof z.ZodError) {
return NextResponse.json(
{ error: 'Invalid input', details: err.errors },
{ status: 400 }
);
}
return NextResponse.json({ error: 'Invalid input' }, { status: 400 });
}
const count = await db.qRDesignPreset.count({ where: { userId } });
const existing = await db.qRDesignPreset.findFirst({
where: { userId, name: data.name },
select: { id: true },
});
if (!existing && count >= MAX_PRESETS) {
return NextResponse.json(
{
error: 'Preset limit reached',
message: `You can keep up to ${MAX_PRESETS} presets. Delete one to save another.`,
},
{ status: 403 }
);
}
// Same name overwrites rather than creating a near-duplicate. Someone saving
// "Client A" twice means "update it", not "keep both".
const preset = await db.qRDesignPreset.upsert({
where: { userId_name: { userId, name: data.name } },
create: { userId, name: data.name, style: data.style },
update: { style: data.style },
});
return NextResponse.json(preset, { status: existing ? 200 : 201 });
}
export async function DELETE(request: NextRequest) {
const csrfCheck = csrfProtection(request);
if (!csrfCheck.valid) {
return NextResponse.json({ error: csrfCheck.error }, { status: 403 });
}
const userId = getSessionUserId();
if (!userId) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
}
const id = new URL(request.url).searchParams.get('id');
if (!id) {
return NextResponse.json({ error: 'Missing id' }, { status: 400 });
}
const deleted = await db.qRDesignPreset.deleteMany({ where: { id, userId } });
if (deleted.count === 0) {
return NextResponse.json({ error: 'Preset not found' }, { status: 404 });
}
return NextResponse.json({ ok: true });
}

View File

@@ -4,6 +4,7 @@ import { db } from '@/lib/db';
import { z } from 'zod';
import { csrfProtection } from '@/lib/csrf';
import { rateLimit, getClientIdentifier, RateLimits } from '@/lib/rateLimit';
import { DYNAMIC_QR_LIMITS } from '@/lib/plans';
const updateQRSchema = z.object({
title: z.string().min(1).optional(),
@@ -103,6 +104,39 @@ export async function PATCH(
return NextResponse.json({ error: 'QR code not found' }, { status: 404 });
}
// Reactivating a paused code consumes a slot again. Without this check,
// pause -> create a new one -> unpause would quietly put the user over
// their plan limit.
if (
data.status === 'ACTIVE' &&
existing.status === 'PAUSED' &&
existing.type === 'DYNAMIC'
) {
const user = await db.user.findUnique({
where: { id: userId },
select: { plan: true },
});
const limit =
DYNAMIC_QR_LIMITS[(user?.plan ?? 'FREE') as keyof typeof DYNAMIC_QR_LIMITS] ??
DYNAMIC_QR_LIMITS.FREE;
const activeCount = await db.qRCode.count({
where: { userId, type: 'DYNAMIC', status: 'ACTIVE' },
});
if (activeCount >= limit) {
return NextResponse.json(
{
error: 'Limit reached',
message: `You have ${activeCount} of ${limit} dynamic QR codes active. Pause another one first, or upgrade to reactivate this code.`,
currentCount: activeCount,
limit,
plan: user?.plan ?? 'FREE',
},
{ status: 403 }
);
}
}
// Static QR codes cannot be edited
if (existing.type === 'STATIC' && data.content) {
return NextResponse.json(
@@ -119,6 +153,7 @@ export async function PATCH(
...(data.content && { content: data.content }),
...(data.tags && { tags: data.tags }),
...(data.style && { style: data.style }),
...(data.status && { status: data.status }),
},
});

View File

@@ -16,6 +16,8 @@ export async function GET(request: NextRequest) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
}
const thirtyDaysAgo = new Date(Date.now() - 30 * 24 * 60 * 60 * 1000);
const qrCodes = await db.qRCode.findMany({
where: { userId },
include: {
@@ -30,11 +32,26 @@ export async function GET(request: NextRequest) {
orderBy: { createdAt: 'desc' },
});
// Recent activity per code. Used by the upgrade modal so someone deciding
// which code to pause can see which one is actually dead, rather than
// guessing from a lifetime total that says nothing about right now.
const recentScans = await db.qRScan.groupBy({
by: ['qrId'],
where: {
ts: { gte: thirtyDaysAgo },
qr: { userId },
},
_count: { _all: true },
});
const recentByQr = new Map(recentScans.map(r => [r.qrId, r._count._all]));
// Transform the data
const transformed = qrCodes.map(qr => ({
...qr,
scans: qr._count.scans,
uniqueScans: qr.scans.length, // Count of scans where isUnique=true
scans30d: recentByQr.get(qr.id) ?? 0,
_count: undefined,
}));
@@ -113,10 +130,13 @@ export async function POST(request: NextRequest) {
// Only check limits for DYNAMIC QR codes (static QR codes are unlimited)
if (!isStatic) {
// Count existing dynamic QR codes
// Only ACTIVE codes consume a slot. Pausing a code frees one, which is what
// the pricing page has always promised ("3 active dynamic QR codes").
const dynamicQRCount = await db.qRCode.count({
where: {
userId,
type: 'DYNAMIC',
status: 'ACTIVE',
},
});

View File

@@ -35,7 +35,16 @@ export async function POST(request: NextRequest) {
}
// Get plan and billing interval from request
const { plan, billingInterval = 'month' } = await request.json();
const { plan, billingInterval = 'month', returnPath } = await request.json();
// Where to send the user after checkout. Used by the in-app upgrade modal so
// people land back on the thing they were building instead of the dashboard.
const safeReturnPath =
typeof returnPath === 'string' &&
returnPath.startsWith('/') &&
!returnPath.startsWith('//')
? returnPath
: null;
if (!plan || !['PRO', 'BUSINESS'].includes(plan)) {
return NextResponse.json(
@@ -114,8 +123,12 @@ export async function POST(request: NextRequest) {
quantity: 1,
},
],
success_url: `${appUrl}/dashboard?success=true&session_id={CHECKOUT_SESSION_ID}`,
cancel_url: `${appUrl}/pricing?canceled=true`,
success_url: safeReturnPath
? `${appUrl}${safeReturnPath}${safeReturnPath.includes('?') ? '&' : '?'}success=true&session_id={CHECKOUT_SESSION_ID}`
: `${appUrl}/dashboard?success=true&session_id={CHECKOUT_SESSION_ID}`,
cancel_url: safeReturnPath
? `${appUrl}${safeReturnPath}${safeReturnPath.includes('?') ? '&' : '?'}canceled=true`
: `${appUrl}/pricing?canceled=true`,
metadata: {
userId: user.id,
plan,

View File

@@ -1,10 +1,10 @@
import { NextRequest, NextResponse } from 'next/server';
import { headers } from 'next/headers';
import { getPlanFromStripePriceId, stripe } from '@/lib/stripe';
import { db } from '@/lib/db';
import Stripe from 'stripe';
import { sendConversionEvent } from '@/lib/metaConversions';
import { scoreUserLifecycle } from '@/lib/revops-server';
import { NextRequest, NextResponse } from 'next/server';
import { headers } from 'next/headers';
import { getPlanFromStripePriceId, stripe } from '@/lib/stripe';
import { db } from '@/lib/db';
import Stripe from 'stripe';
import { sendConversionEvent } from '@/lib/metaConversions';
import { scoreUserLifecycle } from '@/lib/revops-server';
export async function POST(request: NextRequest) {
const body = await request.text();
@@ -51,21 +51,21 @@ export async function POST(request: NextRequest) {
? new Date(periodEndTimestamp * 1000)
: new Date(Date.now() + 30 * 24 * 60 * 60 * 1000);
const updatedUser = await db.user.update({
where: {
stripeCustomerId: session.customer as string,
const updatedUser = await db.user.update({
where: {
stripeCustomerId: session.customer as string,
},
data: {
stripeSubscriptionId: subscription.id,
stripePriceId: subscription.items.data[0].price.id,
stripeCurrentPeriodEnd: currentPeriodEnd,
plan: (session.metadata?.plan || 'FREE') as any,
},
});
await scoreUserLifecycle(updatedUser.id, 'subscription_created');
},
});
// Meta CAPI — Purchase event
await scoreUserLifecycle(updatedUser.id, 'subscription_created');
// Meta CAPI - Purchase event
const amountCents = session.amount_total ?? 0;
sendConversionEvent({
eventName: 'Purchase',
@@ -95,47 +95,47 @@ export async function POST(request: NextRequest) {
? new Date(periodEndTimestamp * 1000)
: new Date(Date.now() + 30 * 24 * 60 * 60 * 1000);
await db.user.update({
where: {
stripeSubscriptionId: subscription.id,
},
data: {
stripePriceId: subscription.items.data[0].price.id,
stripeCurrentPeriodEnd: currentPeriodEnd,
plan: getPlanFromStripePriceId(subscription.items.data[0].price.id) ?? undefined,
},
});
const updated = await db.user.findUnique({
where: { stripeSubscriptionId: subscription.id },
select: { id: true },
});
if (updated?.id) {
await scoreUserLifecycle(
updated.id,
subscription.cancel_at_period_end ? 'subscription_canceled_at_period_end' : 'subscription_updated'
);
}
break;
}
await db.user.update({
where: {
stripeSubscriptionId: subscription.id,
},
data: {
stripePriceId: subscription.items.data[0].price.id,
stripeCurrentPeriodEnd: currentPeriodEnd,
plan: getPlanFromStripePriceId(subscription.items.data[0].price.id) ?? undefined,
},
});
const updated = await db.user.findUnique({
where: { stripeSubscriptionId: subscription.id },
select: { id: true },
});
if (updated?.id) {
await scoreUserLifecycle(
updated.id,
subscription.cancel_at_period_end ? 'subscription_canceled_at_period_end' : 'subscription_updated'
);
}
break;
}
case 'customer.subscription.deleted': {
const subscription = event.data.object as Stripe.Subscription;
const updatedUser = await db.user.update({
where: {
stripeSubscriptionId: subscription.id,
},
const updatedUser = await db.user.update({
where: {
stripeSubscriptionId: subscription.id,
},
data: {
stripeSubscriptionId: null,
stripePriceId: null,
stripeCurrentPeriodEnd: null,
plan: 'FREE',
},
});
await scoreUserLifecycle(updatedUser.id, 'subscription_deleted');
break;
}
plan: 'FREE',
},
});
await scoreUserLifecycle(updatedUser.id, 'subscription_deleted');
break;
}
}
return NextResponse.json({ received: true });

View File

@@ -2,7 +2,7 @@ import { NextRequest, NextResponse } from 'next/server';
import { tiktokApi } from '@/lib/tiktok';
// Live read-only stats from the Display API. Requires the user.info.stats and
// video.list scopes accounts connected before the scope change must
// video.list scopes - accounts connected before the scope change must
// re-authorize via /api/tiktok/connect.
const USER_FIELDS = 'display_name,follower_count,following_count,likes_count,video_count';

View File

@@ -5,7 +5,7 @@ import { TIKTOK_BRAND, getValidTiktokTokens } from '@/lib/tiktok';
export async function GET(request: NextRequest) {
const adminKey = process.env.TIKTOK_ADMIN_KEY;
if (!adminKey) {
// Unlike /connect, this endpoint hands out live credentials never expose
// Unlike /connect, this endpoint hands out live credentials - never expose
// it without a configured key.
return NextResponse.json(
{ error: 'TIKTOK_ADMIN_KEY must be configured to expose TikTok status' },

View File

@@ -135,7 +135,7 @@ export async function POST(request: NextRequest) {
media_type: 'PHOTO',
// MEDIA_UPLOAD = draft in the creator's TikTok inbox (posting
// policy is upload/draft only) and only needs the video.upload
// scope QRMaster has no video.publish.
// scope - QRMaster has no video.publish.
post_mode: 'MEDIA_UPLOAD',
post_info: {
...(title ? { title } : {}),

View File

@@ -23,11 +23,14 @@ export async function GET(request: NextRequest) {
return NextResponse.json({ error: 'User not found' }, { status: 404 });
}
// Count dynamic QR codes
// Count dynamic QR codes. Must match the limit check in /api/qrs - only
// ACTIVE codes consume a slot, otherwise the dashboard shows a different
// number than the API actually enforces.
const dynamicQRCount = await db.qRCode.count({
where: {
userId,
type: 'DYNAMIC',
status: 'ACTIVE',
},
});

View File

@@ -10,7 +10,7 @@ const isIndexable = process.env.NEXT_PUBLIC_INDEXABLE === 'true';
export const metadata: Metadata = {
metadataBase: new URL('https://www.qrmaster.net'),
title: {
default: 'QR Master Smart QR Generator & Analytics',
default: 'QR Master - Smart QR Generator & Analytics',
template: '%s | QR Master',
},
description: 'Create dynamic QR codes, track scans, and scale campaigns with secure analytics. Free advanced features, bulk generation, and custom branding available.',
@@ -18,14 +18,14 @@ export const metadata: Metadata = {
robots: isIndexable
? { index: true, follow: true }
: { index: false, follow: false },
icons: {
icon: [
{ url: '/favicon.svg', type: 'image/svg+xml' },
{ url: '/favicon.ico', sizes: '16x16 32x32', type: 'image/x-icon' },
],
shortcut: '/favicon.ico',
apple: '/logo.svg',
},
icons: {
icon: [
{ url: '/favicon.svg', type: 'image/svg+xml' },
{ url: '/favicon.ico', sizes: '16x16 32x32', type: 'image/x-icon' },
],
shortcut: '/favicon.ico',
apple: '/logo.svg',
},
twitter: {
card: 'summary_large_image',
site: '@qrmaster',
@@ -34,7 +34,7 @@ export const metadata: Metadata = {
openGraph: {
type: 'website',
siteName: 'QR Master',
title: 'QR Master Smart QR Generator & Analytics',
title: 'QR Master - Smart QR Generator & Analytics',
description: 'Create dynamic QR codes, track scans, and scale campaigns with secure analytics. Free advanced features, bulk generation, and custom branding available.',
url: 'https://www.qrmaster.net',
images: [

View File

@@ -5,7 +5,7 @@ export const runtime = 'edge';
export async function GET(request: Request) {
try {
const { searchParams } = new URL(request.url);
const title = searchParams.get('title') || 'QR Master Smart QR Generator & Analytics';
const title = searchParams.get('title') || 'QR Master - Smart QR Generator & Analytics';
return new ImageResponse(
(

View File

@@ -4,13 +4,14 @@ import '@/styles/globals.css';
export const metadata = {
title: 'vCard Download',
description: 'Download contact information',
icons: {
icon: [
{ url: '/favicon1.png', sizes: '512x512', type: 'image/png' },
],
shortcut: '/favicon1.png',
apple: '/favicon1.png',
},
icons: {
icon: [
{ url: '/favicon.svg', type: 'image/svg+xml' },
{ url: '/favicon.ico', sizes: '16x16 32x32', type: 'image/x-icon' },
],
shortcut: '/favicon.ico',
apple: '/logo.svg',
},
};
export default function VCardLayout({