Files
manoon-headless/src/lib/seo/keywords/locales/en.ts
Unchained 234b1f1739 feat: comprehensive SEO system with keywords and schema markup
- Add 4-locale keyword configurations (SR, EN, DE, FR)
- Create schema generators (Product, Organization, Breadcrumb)
- Add React components for JSON-LD rendering
- Implement caching for keyword performance
- Abstract all SEO logic for maintainability
2026-03-30 11:22:44 +02:00

272 lines
7.3 KiB
TypeScript

import { LocaleKeywords } from '../types';
/**
* English (EN) SEO Keywords Configuration
* Primary market: International/US/UK
* Language: English
*/
export const englishKeywords: LocaleKeywords = {
locale: 'en',
brand: {
companyName: 'ManoonOils',
tagline: 'Premium Natural Anti Age Serums and Oils For Face, Skin & Hair',
category: 'natural cosmetics',
valueProposition: 'handmade products from natural ingredients without chemicals'
},
pages: {
home: {
primary: [
'natural face serum',
'organic skincare',
'anti aging serum natural'
],
secondary: [
'natural oils for face',
'clean beauty products',
'serum without chemicals',
'natural skin care'
],
longTail: [
'best natural serum for mature skin',
'where to buy organic skincare online',
'natural anti aging products for face',
'face serum with natural ingredients',
'handmade natural cosmetics'
],
metaTitle: 'ManoonOils | Natural Face Serum | Organic Skincare',
metaDescription: 'Discover our collection of premium natural face serums. Anti-aging, hydration and radiant skin without chemicals. Handmade products.'
},
products: {
primary: [
'natural face serum shop',
'organic face care products',
'anti aging serum natural'
],
secondary: [
'wrinkle serum',
'glow serum',
'natural face oils',
'serum without parabens'
],
longTail: [
'natural serum for dry facial skin',
'organic anti aging serum price',
'vitamin C serum for face',
'natural serum for sensitive skin',
'where to buy natural serum'
],
metaTitle: 'Natural Face Serum | Organic Skincare | ManoonOils',
metaDescription: 'Browse our collection of premium natural face serums. Anti-aging, hydration and radiant skin without chemicals.'
},
product: {
primary: [
'{{productName}} serum',
'natural face serum',
'organic skincare'
],
secondary: [
'anti wrinkle serum',
'anti aging serum',
'natural face care',
'serum without chemicals'
],
longTail: [
'{{productName}} reviews',
'{{productName}} price',
'{{productName}} where to buy',
'{{productName}} results',
'best serum for {{concern}}'
],
metaTitle: '{{productName}} | Natural Face Serum | ManoonOils',
metaDescription: '{{productName}} - premium natural serum for {{concern}}. {{benefits}}. Without chemicals, handmade.'
},
about: {
primary: [
'about manoonoils',
'natural cosmetics brand',
'handmade skincare manufacturer'
],
secondary: [
'our story',
'mission and vision',
'natural ingredients',
'handcrafted products'
],
longTail: [
'who is behind manoonoils',
'why choose natural cosmetics',
'how our products are made',
'ethical beauty production'
],
metaTitle: 'About Us | ManoonOils | Natural Cosmetics',
metaDescription: 'Meet ManoonOils - a manufacturer of premium natural serums. Our story, mission and commitment to quality without compromise.'
},
contact: {
primary: [
'contact manoonoils',
'buy natural serum',
'skincare collaboration'
],
secondary: [
'natural cosmetics sales',
'wholesale serum',
'distributors'
],
longTail: [
'how to order manoonoils',
'manoonoils contact phone',
'where to buy products',
'collaboration with manoonoils'
],
metaTitle: 'Contact | ManoonOils | Buy Natural Serum',
metaDescription: 'Contact us for orders, product questions or business collaboration. ManoonOils - natural cosmetics.'
},
checkout: {
primary: [],
secondary: [],
longTail: [],
metaTitle: 'Complete Purchase | ManoonOils',
metaDescription: 'Securely complete your purchase of natural serums. Fast shipping worldwide.'
},
blog: {
primary: [
'skincare tips',
'natural skin care',
'anti aging tips'
],
secondary: [
'how to use serum',
'skincare routine',
'natural ingredients',
'mature skin care'
],
longTail: [
'which oils are best for face',
'how to reduce wrinkles naturally',
'daily skincare routine',
'natural alternative to retinol'
],
metaTitle: 'Blog | Skincare Tips | ManoonOils',
metaDescription: 'Expert tips for facial care, natural alternatives and guides for healthy, glowing skin. Read our blog.'
}
},
categories: {
antiAging: [
'anti aging serum',
'wrinkle serum',
'anti aging skincare',
'natural anti age',
'serum for mature skin',
'anti aging cosmetics'
],
hydration: [
'hydrating serum',
'serum for dry skin',
'moisture for face',
'face hydration',
'serum for dehydrated skin'
],
glow: [
'glow serum',
'radiance serum',
'glowing skin',
'serum for brightness',
'healthy glow'
],
sensitive: [
'serum for sensitive skin',
'gentle face care',
'fragrance free serum',
'hypoallergenic skincare',
'serum for rosacea'
],
natural: [
'natural serum',
'herbal serum',
'serum from natural ingredients',
'natural cosmetics',
'homemade serum'
],
organic: [
'organic serum',
'bio serum',
'organic cosmetics',
'certified organic',
'eco serum'
]
},
content: {
educational: [
'how to use face serum',
'what is the difference between serum and cream',
'how to recognize quality natural cosmetics',
'order of applying skincare products',
'how to read cosmetic product labels'
],
benefits: [
'benefits of using natural serums',
'why choose organic cosmetics',
'benefits of argan oil for skin',
'rosehip oil for wrinkles',
'squalane - everything you need to know'
],
comparison: [
'natural vs synthetic cosmetics',
'serum or cream - which is better',
'retinol vs bakuchiol',
'chemical peel vs enzymatic',
'skin before and after natural serums'
],
ingredients: [
'argan oil properties',
'jojoba oil for face',
'vitamin C in cosmetics',
'natural hyaluronic acid',
'eco certifications cosmetics'
]
},
competitors: {
brands: [
'The Ordinary',
'Paula\'s Choice',
'La Roche Posay',
'Vichy',
'L\'Oreal',
'Garnier',
'Nuxe',
'Caudalie',
'Drunk Elephant',
'SkinCeuticals',
'Sunday Riley',
'Tata Harper'
],
comparisons: [
'manoonoils vs the ordinary',
'natural serum vs drugstore',
'handmade cosmetics vs commercial',
'serum without chemicals vs standard'
],
alternatives: [
'alternative to the ordinary',
'natural alternative to retinol',
'affordable alternative to skinceuticals',
'handmade product instead of imported',
'serum without silicone alternative'
]
}
};
export default englishKeywords;