72 lines
2.3 KiB
TypeScript
72 lines
2.3 KiB
TypeScript
import type { Metadata } from 'next';
|
|
import '@/styles/globals.css';
|
|
import MarketingLayout from './MarketingLayout';
|
|
// Import schema functions from library
|
|
import { organizationSchema } from '@/lib/schema';
|
|
|
|
const isIndexable = process.env.NEXT_PUBLIC_INDEXABLE === 'true';
|
|
|
|
export const metadata: Metadata = {
|
|
metadataBase: new URL('https://www.qrmaster.net'),
|
|
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 },
|
|
icons: {
|
|
icon: [
|
|
{ url: '/favicon.svg', type: 'image/svg+xml' },
|
|
{ url: '/favicon.ico', sizes: '16x16 32x32', type: 'image/x-icon' },
|
|
],
|
|
shortcut: '/favicon.ico',
|
|
apple: '/logo.svg',
|
|
},
|
|
twitter: {
|
|
card: 'summary_large_image',
|
|
site: '@qrmaster',
|
|
images: ['https://www.qrmaster.net/og-image.png'],
|
|
},
|
|
openGraph: {
|
|
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.',
|
|
images: [
|
|
{
|
|
url: 'https://www.qrmaster.net/og-image.png',
|
|
width: 1200,
|
|
height: 630,
|
|
alt: 'QR Master - Dynamic QR Code Generator and Analytics Platform',
|
|
},
|
|
],
|
|
locale: 'en_US',
|
|
},
|
|
verification: {
|
|
other: {
|
|
'facebook-domain-verification': process.env.NEXT_PUBLIC_FACEBOOK_DOMAIN_VERIFICATION || '',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default function MarketingGroupLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<script
|
|
type="application/ld+json"
|
|
dangerouslySetInnerHTML={{ __html: JSON.stringify(organizationSchema()) }}
|
|
/>
|
|
<MarketingLayout>
|
|
{children}
|
|
</MarketingLayout>
|
|
</>
|
|
);
|
|
}
|