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 { Music, Shield, Zap, Smartphone, Video, Heart, Download, Share2 } from '
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: 'TikTok QR Code Generator',
applicationCategory: 'UtilitiesApplication',
operatingSystem: 'Web Browser',
offers: {
'@type': 'Offer',
price: '0',
priceCurrency: 'USD',
},
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: '4.9',
ratingCount: '1560',
},
description: 'Generate QR codes that direct users to a TikTok profile.',
},
generateSoftwareAppSchema(
'TikTok QR Code Generator',
'Generate QR codes that direct users to a TikTok profile.',
'/og-tiktok-generator.png'
),
{
'@type': 'HowTo',
name: 'How to Create a TikTok QR Code',
@@ -93,51 +82,28 @@ const jsonLd = {
],
totalTime: 'PT30S',
},
{
'@type': 'FAQPage',
mainEntity: [
{
'@type': 'Question',
name: 'Does it open the TikTok app?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Yes! If the app is installed, the QR code will deep-link directly to your profile in the TikTok app.',
},
},
{
'@type': 'Question',
name: 'What is a TikCode?',
acceptedAnswer: {
'@type': 'Answer',
text: 'TikCode was TikTok\'s proprietary QR code system. They have moved towards standard QR codes, which is what our tool generates. These are more compatible with standard camera apps.',
},
},
{
'@type': 'Question',
name: 'Is it free?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Yes, this generator is completely free.',
},
},
{
'@type': 'Question',
name: 'Can I track who scanned my code?',
acceptedAnswer: {
'@type': 'Answer',
text: 'No, this is a static QR code. For analytics, you need a Dynamic QR Code.',
},
},
{
'@type': 'Question',
name: 'Is it safe?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Yes. The QR code simply contains a link to your TikTok profile. No personal data is collected.',
},
},
],
},
generateFaqSchema({
'Does this replace the in-app QR code?': {
question: 'Does this replace the in-app QR code?',
answer: 'You can use either! The advantage of our generator is that you can print high-resolution versions for large posters, customize the color/frame, and it works with any standard QR scanner.',
},
'Can I link to a specific video?': {
question: 'Can I link to a specific video?',
answer: 'Yes, just paste the full video URL (e.g. tiktok.com/@user/video/123...) instead of your username.',
},
'Is it free?': {
question: 'Is it free?',
answer: 'Yes, completely free from start to finish.',
},
'Can I track who scanned my code?': {
question: 'Can I track who scanned my code?',
answer: 'No, this is a static QR code. For analytics, you need a Dynamic QR Code.',
},
'Is it safe?': {
question: 'Is it safe?',
answer: 'Yes. The QR code simply contains a link to your TikTok profile. No personal data is collected.',
},
}),
],
};