This commit is contained in:
Timo Knuth
2025-10-17 13:45:33 +02:00
parent cd3ee5fc8f
commit 254e6490b8
36 changed files with 1712 additions and 917 deletions

View File

@@ -3,24 +3,39 @@ import '@/styles/globals.css';
import { ToastContainer } from '@/components/ui/Toast';
import AuthProvider from '@/components/SessionProvider';
const isIndexable = process.env.NEXT_PUBLIC_INDEXABLE === 'true';
export const metadata: Metadata = {
title: 'QR Master - Create Custom QR Codes in Seconds',
description: 'Generate static and dynamic QR codes with advanced tracking, professional templates, and seamless integrations.',
keywords: 'QR code, QR generator, dynamic QR, QR tracking, QR analytics',
metadataBase: new URL('https://www.qrmaster.com'),
title: {
default: 'QR Master Smart QR Generator & Analytics',
template: '%s | QR Master',
},
description: 'Create dynamic QR codes, track scans, and scale campaigns with secure analytics.',
keywords: 'QR code, QR generator, dynamic QR, QR tracking, QR analytics, branded QR, bulk QR generator',
robots: isIndexable
? { index: true, follow: true }
: { index: false, follow: false },
twitter: {
card: 'summary_large_image',
site: '@qrmaster',
images: ['https://www.qrmaster.com/static/og-image.png'],
},
openGraph: {
title: 'QR Master - Create Custom QR Codes in Seconds',
description: 'Generate static and dynamic QR codes with advanced tracking, professional templates, and seamless integrations.',
url: 'https://qrmaster.com',
type: 'website',
siteName: 'QR Master',
title: 'QR Master Smart QR Generator & Analytics',
description: 'Create dynamic QR codes, track scans, and scale campaigns with secure analytics.',
url: 'https://www.qrmaster.com',
images: [
{
url: '/og-image.png',
url: 'https://www.qrmaster.com/static/og-image.png',
width: 1200,
height: 630,
alt: 'QR Master - Dynamic QR Code Generator and Analytics Platform',
},
],
locale: 'en_US',
type: 'website',
},
};