Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /**
* SEO Constants and Site Metadata Configuration
* Centralized configuration for all SEO-related metadata
*/
export const SITE_CONFIG = {
name: process.env.NEXT_PUBLIC_SITE_NAME || 'Elite Events',
description:
process.env.NEXT_PUBLIC_SITE_DESCRIPTION ||
'Premium event supplies for all your special occasions',
url: process.env.NEXT_PUBLIC_SITE_URL || 'https://eliteevents.com',
locale: 'en_US',
type: 'website',
twitterHandle: '@eliteevents',
logo: '/images/logo.png',
defaultImage: '/images/og-default.jpg',
} as const;
export const ORGANIZATION_CONFIG = {
name: 'Elite Events',
url: SITE_CONFIG.url,
logo: `${SITE_CONFIG.url}/images/logo.png`,
email: 'contact@eliteevents.com',
telephone: '+1-XXX-XXX-XXXX',
address: {
streetAddress: '',
addressLocality: '',
addressRegion: '',
postalCode: '',
addressCountry: 'US',
},
socialLinks: [
'https://facebook.com/eliteevents',
'https://twitter.com/eliteevents',
'https://instagram.com/eliteevents',
'https://pinterest.com/eliteevents',
] as string[],
};
export const DEFAULT_METADATA = {
title: {
default: SITE_CONFIG.name,
template: `%s | ${SITE_CONFIG.name}`,
},
description: SITE_CONFIG.description,
keywords: [
'event supplies',
'party supplies',
'wedding decorations',
'birthday party',
'celebration',
'decorations',
'party planning',
'event planning',
] as string[],
authors: [{ name: SITE_CONFIG.name, url: SITE_CONFIG.url }] as { name: string; url: string }[],
creator: SITE_CONFIG.name,
publisher: SITE_CONFIG.name,
formatDetection: {
email: false,
address: false,
telephone: false,
},
metadataBase: new URL(SITE_CONFIG.url),
openGraph: {
type: 'website' as const,
locale: SITE_CONFIG.locale,
url: SITE_CONFIG.url,
siteName: SITE_CONFIG.name,
title: SITE_CONFIG.name,
description: SITE_CONFIG.description,
images: [
{
url: SITE_CONFIG.defaultImage,
width: 1200,
height: 630,
alt: SITE_CONFIG.name,
},
],
},
twitter: {
card: 'summary_large_image' as const,
site: SITE_CONFIG.twitterHandle,
creator: SITE_CONFIG.twitterHandle,
title: SITE_CONFIG.name,
description: SITE_CONFIG.description,
images: [SITE_CONFIG.defaultImage],
},
robots: {
index: true,
follow: true,
googleBot: {
index: true,
follow: true,
'max-video-preview': -1,
'max-image-preview': 'large' as const,
'max-snippet': -1,
},
},
verification: {
google: process.env.GOOGLE_SITE_VERIFICATION || '',
},
};
// SEO text limits for best practices
export const SEO_LIMITS = {
titleMaxLength: 60,
descriptionMaxLength: 160,
keywordsMaxCount: 10,
} as const;
// Page-specific metadata templates
export const PAGE_METADATA = {
home: {
title: 'Premium Event Supplies & Party Decorations',
description:
'Shop premium event supplies, party decorations, and celebration essentials. Free shipping on orders over $50. Make every occasion special with Elite Events.',
},
shop: {
title: 'Shop All Products',
description:
'Browse our complete collection of event supplies, party decorations, and celebration essentials. Find everything you need for your next special occasion.',
},
about: {
title: 'About Us',
description:
'Learn about Elite Events - your trusted source for premium event supplies and party decorations. Discover our story, mission, and commitment to quality.',
},
contact: {
title: 'Contact Us',
description:
'Get in touch with Elite Events. We\'re here to help with your event planning needs. Contact us for questions, support, or wholesale inquiries.',
},
cart: {
title: 'Shopping Cart',
description: 'Review your shopping cart and proceed to checkout.',
},
checkout: {
title: 'Checkout',
description: 'Complete your order securely.',
},
account: {
title: 'My Account',
description: 'Manage your account, orders, and preferences.',
},
wishlist: {
title: 'My Wishlist',
description: 'View and manage your saved items.',
},
faq: {
title: 'Frequently Asked Questions',
description:
'Find answers to common questions about orders, shipping, returns, and more at Elite Events.',
},
} as const;
// Availability mapping for schema.org
export const AVAILABILITY_MAP = {
inStock: 'https://schema.org/InStock',
outOfStock: 'https://schema.org/OutOfStock',
preOrder: 'https://schema.org/PreOrder',
backOrder: 'https://schema.org/BackOrder',
discontinued: 'https://schema.org/Discontinued',
limitedAvailability: 'https://schema.org/LimitedAvailability',
} as const;
// Condition mapping for schema.org
export const CONDITION_MAP = {
new: 'https://schema.org/NewCondition',
used: 'https://schema.org/UsedCondition',
refurbished: 'https://schema.org/RefurbishedCondition',
damaged: 'https://schema.org/DamagedCondition',
} as const;
|