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 { MapPin, Shield, Zap, Smartphone, Navigation, Map, Download, Share2 } fr
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: 'Geolocation QR Code Generator',
applicationCategory: 'UtilitiesApplication',
operatingSystem: 'Web Browser',
offers: {
'@type': 'Offer',
price: '0',
priceCurrency: 'USD',
},
aggregateRating: {
'@type': 'AggregateRating',
ratingValue: '4.7',
ratingCount: '890',
},
description: 'Generate QR codes that open specific geographic coordinates in map applications.',
},
generateSoftwareAppSchema(
'Geolocation QR Code Generator',
'Generate QR codes that open specific geographic coordinates in map applications.',
'/og-geolocation-generator.png'
),
{
'@type': 'HowTo',
name: 'How to Create a Location QR Code',
@@ -93,51 +82,28 @@ const jsonLd = {
],
totalTime: 'PT45S',
},
{
'@type': 'FAQPage',
mainEntity: [
{
'@type': 'Question',
name: 'Which map app does it open?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Our generator creates a universal Google Maps link. On most devices, this will open the Google Maps app if installed, or the browser version if not. It is the most compatible method.',
},
},
{
'@type': 'Question',
name: 'How do I find my Latitude and Longitude?',
acceptedAnswer: {
'@type': 'Answer',
text: 'On Google Maps desktop: Right-click any spot on the map. The first item in the menu is the coordinates. Click to copy them.',
},
},
{
'@type': 'Question',
name: 'Does it work offline?',
acceptedAnswer: {
'@type': 'Answer',
text: 'The QR code itself can be scanned offline, but the user will likely need an internet connection to load the map and get directions.',
},
},
{
'@type': 'Question',
name: 'Can I use an address instead?',
acceptedAnswer: {
'@type': 'Answer',
text: 'For precise results, we use coordinates. However, you can use our URL Generator and paste a link to your Google Maps address search result if you prefer.',
},
},
{
'@type': 'Question',
name: 'Is it free?',
acceptedAnswer: {
'@type': 'Answer',
text: 'Yes, generating this location QR code is completely free and requires no signup.',
},
},
],
},
generateFaqSchema({
'Which map app does it open?': {
question: 'Which map app does it open?',
answer: 'Our generator creates a universal Google Maps link. On most devices, this will open the Google Maps app if installed, or the browser version if not. It is the most compatible method.',
},
'How do I find my Latitude and Longitude?': {
question: 'How do I find my Latitude and Longitude?',
answer: 'On Google Maps desktop: Right-click any spot on the map. The first item in the menu is the coordinates. Click to copy them.',
},
'Does it work offline?': {
question: 'Does it work offline?',
answer: 'The QR code itself can be scanned offline, but the user will likely need an internet connection to load the map and get directions.',
},
'Can I use an address instead?': {
question: 'Can I use an address instead?',
answer: 'For precise results, we use coordinates. However, you can use our URL Generator and paste a link to your Google Maps address search result if you prefer.',
},
'Is it free?': {
question: 'Is it free?',
answer: 'Yes, generating this location QR code is completely free and requires no signup.',
},
}),
],
};