neuer versuch

This commit is contained in:
Timo Knuth
2026-01-14 14:02:48 +01:00
parent 1747922b29
commit f68b7a331c
53 changed files with 3560 additions and 4397 deletions

View File

@@ -5,6 +5,7 @@ import { MessageSquare, Shield, Zap, Smartphone, Send } from 'lucide-react';
import { QRCodeSVG } from 'qrcode.react';
import { ToolBreadcrumb } from '@/components/seo/BreadcrumbSchema';
import { RelatedTools } from '@/components/marketing/RelatedTools';
import { generateSoftwareAppSchema, generateFaqSchema } from '@/lib/schema-utils';
// SEO Optimized Metadata
export const metadata: Metadata = {
@@ -38,23 +39,11 @@ export const metadata: Metadata = {
const jsonLd = {
'@context': 'https://schema.org',
'@graph': [
{
'@type': 'SoftwareApplication',
name: 'SMS QR Code Generator',
applicationCategory: 'UtilitiesApplication',
operatingSystem: 'Web Browser',
offers: {
'@type': 'Offer',
price: '0',
priceCurrency: 'USD',
},
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: '4.8',
ratingCount: '1350',
},
description: 'Generate QR codes that open the user\'s SMS app with a pre-filled message.',
},
generateSoftwareAppSchema(
'SMS QR Code Generator',
'Generate QR codes that open the user\'s SMS app with a pre-filled message.',
'/og-sms-generator.png'
),
{
'@type': 'HowTo',
name: 'How to Create an SMS QR Code',
@@ -81,43 +70,24 @@ const jsonLd = {
],
totalTime: 'PT30S',
},
{
'@type': 'FAQPage',
mainEntity: [
{
'@type': 'Question',
name: 'Does the text send automatically?',
acceptedAnswer: {
'@type': 'Answer',
text: 'No. The QR code opens the messaging app with the text typed out. The user must simply tap "Send". This is a security feature of all smartphones.',
},
},
{
'@type': 'Question',
name: 'Is there a cost?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Generating the code is free. Standard SMS rates apply for the person sending the text message, depending on their carrier plan.',
},
},
{
'@type': 'Question',
name: 'Can I change the message later?',
acceptedAnswer: {
'@type': 'Answer',
text: 'No. Static QR codes have the message embedded in them. To change the message, you need a new QR code.',
},
},
{
'@type': 'Question',
name: 'What uses are there for SMS QR codes?',
acceptedAnswer: {
'@type': 'Answer',
text: 'They are great for SMS marketing opt-ins ("Text JOIN to 12345"), customer support requests, or voting via text.',
},
},
],
},
generateFaqSchema({
'Does the text send automatically?': {
question: 'Does the text send automatically?',
answer: 'No. The QR code opens the messaging app with the text typed out. The user must simply tap "Send". This is a security feature of all smartphones.',
},
'Is there a cost?': {
question: 'Is there a cost?',
answer: 'Generating the code is free. Standard SMS rates apply for the person sending the text message, depending on their carrier plan.',
},
'Can I change the message later?': {
question: 'Can I change the message later?',
answer: 'No. Static QR codes have the message embedded in them. To change the message, you need a new QR code.',
},
'What uses are there for SMS QR codes?': {
question: 'What uses are there for SMS QR codes?',
answer: 'They are great for SMS marketing opt-ins ("Text JOIN to 12345"), customer support requests, or voting via text.',
},
}),
],
};