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 { CreditCard, Shield, Zap, Smartphone, DollarSign, Download, Share2, Bank
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,12 @@ export const metadata: Metadata = {
const jsonLd = {
'@context': 'https://schema.org',
'@graph': [
{
'@type': 'SoftwareApplication',
name: 'PayPal QR Code Generator',
applicationCategory: 'FinanceApplication',
operatingSystem: 'Web Browser',
offers: {
'@type': 'Offer',
price: '0',
priceCurrency: 'USD',
},
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: '4.9',
ratingCount: '980',
},
description: 'Generate QR codes that link to your PayPal.me page for instant payments.',
},
generateSoftwareAppSchema(
'PayPal QR Code Generator',
'Generate QR codes that link to your PayPal.me page for instant payments.',
'/og-paypal-generator.png',
'FinanceApplication'
),
{
'@type': 'HowTo',
name: 'How to Create a PayPal QR Code',
@@ -93,51 +83,28 @@ const jsonLd = {
],
totalTime: 'PT30S',
},
{
'@type': 'FAQPage',
mainEntity: [
{
'@type': 'Question',
name: 'How does the PayPal QR code work?',
acceptedAnswer: {
'@type': 'Answer',
text: 'When scanned, it opens the PayPal app or website with your PayPal.me link. If you set an amount, it will be pre-filled for the payer.',
},
},
{
'@type': 'Question',
name: 'Do I need a PayPal Business account?',
acceptedAnswer: {
'@type': 'Answer',
text: 'No. Any PayPal account with a PayPal.me link can use this generator. Personal accounts work fine for tips and donations.',
},
},
{
'@type': 'Question',
name: 'Is there a fee for using the QR code?',
acceptedAnswer: {
'@type': 'Answer',
text: 'This generator is 100% free. PayPal may charge their standard transaction fees when you receive payments.',
},
},
{
'@type': 'Question',
name: 'Can I change the amount later?',
acceptedAnswer: {
'@type': 'Answer',
text: 'No, this is a static QR code. The amount is encoded permanently. For variable amounts, leave the amount field empty.',
},
},
{
'@type': 'Question',
name: 'What currencies are supported?',
acceptedAnswer: {
'@type': 'Answer',
text: 'We support EUR, USD, GBP, and CHF. PayPal handles currency conversion automatically.',
},
},
],
},
generateFaqSchema({
'How does the PayPal QR code work?': {
question: 'How does the PayPal QR code work?',
answer: 'When scanned, it opens the PayPal app or website with your PayPal.me link. If you set an amount, it will be pre-filled for the payer.',
},
'Do I need a PayPal Business account?': {
question: 'Do I need a PayPal Business account?',
answer: 'No. Any PayPal account with a PayPal.me link can use this generator. Personal accounts work fine for tips and donations.',
},
'Is there a fee for using the QR code?': {
question: 'Is there a fee for using the QR code?',
answer: 'This generator is 100% free. PayPal may charge their standard transaction fees when you receive payments.',
},
'Can I change the amount later?': {
question: 'Can I change the amount later?',
answer: 'No, this is a static QR code. The amount is encoded permanently. For variable amounts, leave the amount field empty.',
},
'What currencies are supported?': {
question: 'What currencies are supported?',
answer: 'We support EUR, USD, GBP, and CHF. PayPal handles currency conversion automatically.',
},
}),
],
};