add
This commit is contained in:
@@ -14,9 +14,9 @@ function truncateAtWord(text: string, maxLength: number): string {
|
||||
}
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const title = truncateAtWord('QR Master FAQ: Dynamic, Tracking, Bulk, and Print', 60);
|
||||
const title = truncateAtWord('QR Code FAQ: Do QR Codes Expire, Work Through Laminate, and More', 60);
|
||||
const description = truncateAtWord(
|
||||
'Answers about dynamic QR codes, scan tracking, privacy, bulk creation, and print setup.',
|
||||
'Answers to common QR code questions: do QR codes expire, will they become obsolete, do they work through laminate, and product-specific questions about dynamic QR codes and tracking.',
|
||||
160
|
||||
);
|
||||
|
||||
@@ -58,6 +58,41 @@ type FAQItemWithRichText = {
|
||||
};
|
||||
|
||||
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.',
|
||||
},
|
||||
{
|
||||
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.',
|
||||
},
|
||||
{
|
||||
question: 'Will QR codes replace barcodes?',
|
||||
answer:
|
||||
'QR codes will not fully replace barcodes. Barcodes remain dominant in high-speed retail checkout due to laser scanner compatibility and established infrastructure. QR codes excel for consumer-facing use cases: menus, marketing, payments, and product pages. Both formats coexist across different industries.',
|
||||
},
|
||||
{
|
||||
question: 'Do QR codes work through laminate?',
|
||||
answer:
|
||||
'Yes. QR codes work through standard laminate because the scanner reads the contrast pattern, not the physical surface. Matte laminate is preferable to gloss, which can cause glare under direct lighting. Avoid laminate with metallic or tinted finishes that alter contrast.',
|
||||
},
|
||||
{
|
||||
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.',
|
||||
},
|
||||
{
|
||||
question: 'When were QR codes invented?',
|
||||
answer:
|
||||
'QR codes were invented in 1994 by Masahiro Hara at Denso Wave, a Toyota subsidiary in Japan. They were originally designed to track automotive parts during manufacturing. QR stands for "Quick Response." The format was made publicly available royalty-free, which enabled widespread global adoption.',
|
||||
},
|
||||
{
|
||||
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.',
|
||||
},
|
||||
{
|
||||
question: 'What is a dynamic QR code?',
|
||||
answer:
|
||||
@@ -210,7 +245,7 @@ export default function FAQPage() {
|
||||
<p className="mb-4 text-xl text-gray-600">
|
||||
Answers about dynamic QR codes, scan tracking, privacy, bulk creation, and print setup.
|
||||
</p>
|
||||
<p className="text-sm text-gray-500">Last updated: March 12, 2026</p>
|
||||
<p className="text-sm text-gray-500">Last updated: April 20, 2026</p>
|
||||
</div>
|
||||
|
||||
<div className="space-y-6">
|
||||
|
||||
Reference in New Issue
Block a user