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 { Youtube, Shield, Zap, Smartphone, Play, Radio, 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: 'YouTube QR Code Generator',
applicationCategory: 'UtilitiesApplication',
operatingSystem: 'Web Browser',
offers: {
'@type': 'Offer',
price: '0',
priceCurrency: 'USD',
},
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: '4.8',
ratingCount: '1340',
},
description: 'Generate QR codes that direct users to a YouTube video or channel.',
},
generateSoftwareAppSchema(
'YouTube QR Code Generator',
'Generate QR codes that direct users to a YouTube video or channel.',
'/og-youtube-generator.png'
),
{
'@type': 'HowTo',
name: 'How to Create a YouTube QR Code',
@@ -93,51 +82,28 @@ const jsonLd = {
],
totalTime: 'PT30S',
},
{
'@type': 'FAQPage',
mainEntity: [
{
'@type': 'Question',
name: 'Does it open the YouTube app?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Yes! If the user has the YouTube app installed, the QR code will automatically launch the app and play the video.',
},
},
{
'@type': 'Question',
name: 'Can I link to a specific timestamp?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Yes. If you include the timestamp in your YouTube link (e.g., ?t=60s), the video will start playing from that exact moment.',
},
},
{
'@type': 'Question',
name: 'Can I use this for a playlist?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Absolutely. Just paste the playlist URL, and users will be taken to the full list of videos.',
},
},
{
'@type': 'Question',
name: 'Is it free?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Yes, this tool is 100% free forever.',
},
},
{
'@type': 'Question',
name: 'Does it work for YouTube Shorts?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Yes, just paste the "Share" link from any YouTube Short.',
},
},
],
},
generateFaqSchema({
'Does it open the YouTube app?': {
question: 'Does it open the YouTube app?',
answer: 'Yes! If the user has the YouTube app installed, the QR code will automatically launch the app and play the video.',
},
'Can I link to a specific timestamp?': {
question: 'Can I link to a specific timestamp?',
answer: 'Yes. If you include the timestamp in your YouTube link (e.g., ?t=60s), the video will start playing from that exact moment.',
},
'Can I use this for a playlist?': {
question: 'Can I use this for a playlist?',
answer: 'Absolutely. Just paste the playlist URL, and users will be taken to the full list of videos.',
},
'Is it free?': {
question: 'Is it free?',
answer: 'Yes, this tool is 100% free forever.',
},
'Does it work for YouTube Shorts?': {
question: 'Does it work for YouTube Shorts?',
answer: 'Yes, just paste the "Share" link from any YouTube Short.',
},
}),
],
};