- Replace Vite + React Router with Next.js 15 App Router - Implement i18n with next-intl (URL-based: /de, /en, /sr) - Add SSR/SSG for all pages (48 static pages generated) - Setup Supabase SSR client for auth - Migrate all pages: Home, About, Portfolio, Blog, Contact, Login, Dashboard, Imprint, Privacy, Terms - Add Docker support with standalone output - Replace i18next with next-intl JSON translations - Use next/image for optimized images Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
64 lines
1.9 KiB
TypeScript
64 lines
1.9 KiB
TypeScript
export const skillgroup = {
|
|
// Kategorien
|
|
categories: {
|
|
development: 'Entwicklung',
|
|
ecommerce: 'E-Commerce',
|
|
marketing: 'Marketing',
|
|
automation: 'Automatisierung',
|
|
languages: 'Programmiersprachen',
|
|
databases: 'Datenbanken'
|
|
},
|
|
// Skills nach Kategorien
|
|
skills: {
|
|
development: {
|
|
frontend: 'Frontend-Entwicklung',
|
|
backend: 'Backend-Entwicklung',
|
|
fullstack: 'Full-Stack-Entwicklung',
|
|
api: 'API-Entwicklung',
|
|
testing: 'Software-Testing'
|
|
},
|
|
ecommerce: {
|
|
jtl: 'JTL WaWi',
|
|
shopware: 'Shopware',
|
|
shopify: 'Shopify',
|
|
woocommerce: 'WooCommerce',
|
|
magento: 'Magento'
|
|
},
|
|
marketing: {
|
|
seo: 'Suchmaschinenoptimierung',
|
|
sea: 'Suchmaschinenwerbung',
|
|
analytics: 'Web-Analyse',
|
|
googleAds: 'Google Ads',
|
|
metaAds: 'Meta Ads'
|
|
},
|
|
automation: {
|
|
rpa: 'Robotergestützte Prozessautomatisierung',
|
|
workflow: 'Workflow-Automatisierung',
|
|
cicd: 'CI/CD',
|
|
testing: 'Test-Automatisierung',
|
|
deployment: 'Deployment-Automatisierung'
|
|
},
|
|
languages: {
|
|
python: 'Python',
|
|
javascript: 'JavaScript',
|
|
typescript: 'TypeScript',
|
|
php: 'PHP',
|
|
sql: 'SQL'
|
|
},
|
|
databases: {
|
|
mysql: 'MySQL',
|
|
postgresql: 'PostgreSQL',
|
|
mongodb: 'MongoDB',
|
|
redis: 'Redis',
|
|
elasticsearch: 'Elasticsearch'
|
|
}
|
|
},
|
|
// Accessibility
|
|
ariaLabels: {
|
|
skillGroup: 'Fähigkeitsgruppe',
|
|
skillList: 'Liste der Fähigkeiten in dieser Kategorie'
|
|
}
|
|
} as const;
|
|
// Type für Typsicherheit
|
|
export type SkillGroupTranslations = typeof skillgroup;
|