Enhance homepage translations for multiple languages
- Updated the structure and content of the ExplosiveHomepageTranslation interface to include detailed translations for hero, actions, services, approach, cta, and contact sections. - Improved clarity and engagement in English, Dutch, German, and French translations, ensuring consistency and better user experience across supported languages. - Added new fields and refined existing text to better reflect the services offered and enhance user interaction.
This commit is contained in:
@@ -1,377 +1,388 @@
|
||||
export interface ExplosiveHomepageTranslation {
|
||||
hero: {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
};
|
||||
actions: {
|
||||
learnMore: string;
|
||||
contactMe: string;
|
||||
};
|
||||
services: {
|
||||
tagline: string;
|
||||
title: string;
|
||||
subtitle: string;
|
||||
items: {
|
||||
title: string;
|
||||
description: string;
|
||||
}[];
|
||||
};
|
||||
approach: {
|
||||
tagline: string;
|
||||
title: string;
|
||||
expertise: string;
|
||||
methods: {
|
||||
title: string;
|
||||
description: string;
|
||||
}[];
|
||||
highlights: string;
|
||||
};
|
||||
cta: {
|
||||
button: string;
|
||||
title: string;
|
||||
subtitle: string;
|
||||
};
|
||||
contact: {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
description: string;
|
||||
fields: {
|
||||
name: string;
|
||||
namePlaceholder: string;
|
||||
email: string;
|
||||
emailPlaceholder: string;
|
||||
message: string;
|
||||
messagePlaceholder: string;
|
||||
};
|
||||
disclaimer: string;
|
||||
};
|
||||
}
|
||||
|
||||
export const supportedLanguages = ['en', 'nl', 'de', 'fr'] as const;
|
||||
|
||||
export function getExplosiveHomepageTranslation(lang: string): ExplosiveHomepageTranslation {
|
||||
return explosiveHomepageTranslations[lang] || explosiveHomepageTranslations['en'];
|
||||
}
|
||||
|
||||
export const explosiveHomepageTranslations: Record<string, ExplosiveHomepageTranslation> = {
|
||||
en: {
|
||||
hero: {
|
||||
title: "Transform Your Business",
|
||||
subtitle: "Unleash the power of AI automation • Microsoft 365 mastery • Custom integrations that actually work"
|
||||
},
|
||||
actions: {
|
||||
learnMore: "Ignite Your Business",
|
||||
contactMe: "Let's Talk"
|
||||
},
|
||||
services: {
|
||||
tagline: "AUTOMATION POWERHOUSE",
|
||||
title: "Services That Actually Move the Needle",
|
||||
subtitle: "Stop wasting time on manual tasks. Let's automate everything and watch your productivity explode.",
|
||||
items: [
|
||||
{
|
||||
title: "Power Automate Magic",
|
||||
description: "Turn 8-hour tasks into 5-minute workflows"
|
||||
},
|
||||
{
|
||||
title: "AI Chatbots That Work",
|
||||
description: "Smart bots that actually understand your business"
|
||||
},
|
||||
{
|
||||
title: "API Integration Wizardry",
|
||||
description: "Connect everything to everything"
|
||||
},
|
||||
{
|
||||
title: "Microsoft 365 Optimization",
|
||||
description: "Make M365 work like it should have from day one"
|
||||
},
|
||||
{
|
||||
title: "SharePoint That Doesn't Suck",
|
||||
description: "Finally, SharePoint that people actually want to use"
|
||||
},
|
||||
{
|
||||
title: "Infrastructure That Scales",
|
||||
description: "Rock-solid systems that grow with you"
|
||||
}
|
||||
]
|
||||
},
|
||||
approach: {
|
||||
tagline: "THE BERGSMA METHOD",
|
||||
title: "Less Talk, More Results",
|
||||
expertise: "15+ years perfecting the art of making technology work for business",
|
||||
methods: [
|
||||
{
|
||||
title: "Focus on Impact",
|
||||
description: "Every solution must move your business forward"
|
||||
},
|
||||
{
|
||||
title: "Speed of Implementation",
|
||||
description: "Fast deployment, immediate results"
|
||||
},
|
||||
{
|
||||
title: "Continuous Evolution",
|
||||
description: "Your tech stack evolves as you grow"
|
||||
}
|
||||
],
|
||||
highlights: "• Microsoft MVP-level expertise\n• Power Automate flows that save thousands of hours\n• AI integrations that actually make sense\n• Enterprise solutions with startup agility"
|
||||
},
|
||||
cta: {
|
||||
button: "LAUNCH YOUR TRANSFORMATION",
|
||||
title: "Ready to 10X Your Efficiency?",
|
||||
subtitle: "Premium automation solutions • Guaranteed results • Lightning-fast implementation"
|
||||
},
|
||||
contact: {
|
||||
title: "Let's Build Something Amazing",
|
||||
subtitle: "Ready to automate your way to success? Drop me a line and let's make your business unstoppable.",
|
||||
description: "Fast response guaranteed • Enterprise-ready solutions • Results you can measure",
|
||||
fields: {
|
||||
name: "👋 Your Name",
|
||||
namePlaceholder: "What should I call you?",
|
||||
email: "📧 Email",
|
||||
emailPlaceholder: "your.email@company.com",
|
||||
message: "💭 Tell Me About Your Project",
|
||||
messagePlaceholder: "What business process is driving you crazy? What would you automate if you could wave a magic wand?"
|
||||
},
|
||||
disclaimer: "🔒 Your info stays private. No spam, just solutions."
|
||||
}
|
||||
},
|
||||
nl: {
|
||||
hero: {
|
||||
title: "Transformeer Je Bedrijf",
|
||||
subtitle: "Ontgrendel de kracht van AI-automatisering • Microsoft 365 expertise • Maatwerk integraties die écht werken"
|
||||
},
|
||||
actions: {
|
||||
learnMore: "Ontketen Je Bedrijf",
|
||||
contactMe: "Laten We Praten"
|
||||
},
|
||||
services: {
|
||||
tagline: "AUTOMATISERING KRACHTCENTRALE",
|
||||
title: "Diensten Die Daadwerkelijk Impact Maken",
|
||||
subtitle: "Stop met tijdverspilling aan handmatige taken. Laten we alles automatiseren en je productiviteit explosief laten groeien.",
|
||||
items: [
|
||||
{
|
||||
title: "Power Automate Magie",
|
||||
description: "Verander 8-uurs taken in 5-minuten workflows"
|
||||
},
|
||||
{
|
||||
title: "AI Chatbots Die Werken",
|
||||
description: "Slimme bots die je bedrijf écht begrijpen"
|
||||
},
|
||||
{
|
||||
title: "API Integratie Tovenarij",
|
||||
description: "Verbind alles met alles"
|
||||
},
|
||||
{
|
||||
title: "Microsoft 365 Optimalisatie",
|
||||
description: "Laat M365 werken zoals het vanaf dag één had moeten doen"
|
||||
},
|
||||
{
|
||||
title: "SharePoint Dat Niet Zuigt",
|
||||
description: "Eindelijk SharePoint dat mensen daadwerkelijk willen gebruiken"
|
||||
},
|
||||
{
|
||||
title: "Infrastructuur Die Schaalt",
|
||||
description: "Rotssolide systemen die met je meegroeien"
|
||||
}
|
||||
]
|
||||
},
|
||||
approach: {
|
||||
tagline: "DE BERGSMA METHODE",
|
||||
title: "Minder Praten, Meer Resultaten",
|
||||
expertise: "15+ jaar het perfectioneren van technologie die voor bedrijven werkt",
|
||||
methods: [
|
||||
{
|
||||
title: "Focus op Impact",
|
||||
description: "Elke oplossing moet je bedrijf vooruit helpen"
|
||||
},
|
||||
{
|
||||
title: "Snelheid van Implementatie",
|
||||
description: "Snelle uitrol, directe resultaten"
|
||||
},
|
||||
{
|
||||
title: "Continue Evolutie",
|
||||
description: "Je tech stack evolueert terwijl je groeit"
|
||||
}
|
||||
],
|
||||
highlights: "• Microsoft MVP-niveau expertise\n• Power Automate flows die duizenden uren besparen\n• AI integraties die echt logisch zijn\n• Enterprise oplossingen met startup wendbaarheid"
|
||||
},
|
||||
cta: {
|
||||
button: "START JE TRANSFORMATIE",
|
||||
title: "Klaar om Je Efficiëntie te Vertienvoudigen?",
|
||||
subtitle: "Premium automatiseringsoplossingen • Gegarandeerde resultaten • Bliksemsnelle implementatie"
|
||||
},
|
||||
contact: {
|
||||
title: "Laten We Iets Geweldigs Bouwen",
|
||||
subtitle: "Klaar om je weg naar succes te automatiseren? Stuur me een berichtje en laten we je bedrijf onstuitbaar maken.",
|
||||
description: "Snelle reactie gegarandeerd • Enterprise-klare oplossingen • Meetbare resultaten",
|
||||
fields: {
|
||||
name: "👋 Je Naam",
|
||||
namePlaceholder: "Hoe moet ik je noemen?",
|
||||
email: "📧 Email",
|
||||
emailPlaceholder: "jouw.email@bedrijf.nl",
|
||||
message: "💭 Vertel Me Over Je Project",
|
||||
messagePlaceholder: "Welk bedrijfsproces maakt je gek? Wat zou je automatiseren als je een toverstaf kon zwaaien?"
|
||||
},
|
||||
disclaimer: "🔒 Je info blijft privé. Geen spam, alleen oplossingen."
|
||||
}
|
||||
},
|
||||
de: {
|
||||
hero: {
|
||||
title: "Machen Sie Ihr Unternehmen zukunftssicher",
|
||||
subtitle: "Entfesseln Sie die Macht der KI-Automatisierung • Microsoft 365 Meisterschaft • Maßgeschneiderte Integrationen, die wirklich funktionieren"
|
||||
},
|
||||
actions: {
|
||||
learnMore: "Jetzt durchstarten",
|
||||
contactMe: "Lassen Sie uns sprechen"
|
||||
},
|
||||
services: {
|
||||
tagline: "AUTOMATISIERUNGS-KRAFTWERK",
|
||||
title: "Services Die Wirklich Durchschlagen",
|
||||
subtitle: "Hören Sie auf, Zeit mit manuellen Aufgaben zu verschwenden. Lassen Sie uns alles automatisieren und Ihre Produktivität explodieren.",
|
||||
items: [
|
||||
{
|
||||
title: "Power Automate Magie",
|
||||
description: "Verwandeln Sie 8-Stunden-Aufgaben in 5-Minuten-Workflows"
|
||||
},
|
||||
{
|
||||
title: "KI-Chatbots Die Funktionieren",
|
||||
description: "Intelligente Bots, die Ihr Unternehmen wirklich verstehen"
|
||||
},
|
||||
{
|
||||
title: "API-Integrations-Zauberei",
|
||||
description: "Verbinden Sie alles mit allem"
|
||||
},
|
||||
{
|
||||
title: "Microsoft 365 Optimierung",
|
||||
description: "Lassen Sie M365 so funktionieren, wie es von Tag eins hätte sein sollen"
|
||||
},
|
||||
{
|
||||
title: "SharePoint Das Nicht Nervt",
|
||||
description: "Endlich SharePoint, das Menschen tatsächlich nutzen wollen"
|
||||
},
|
||||
{
|
||||
title: "Infrastruktur Die Skaliert",
|
||||
description: "Felsenfeste Systeme, die mit Ihnen wachsen"
|
||||
}
|
||||
]
|
||||
},
|
||||
approach: {
|
||||
tagline: "DIE BERGSMA-METHODE",
|
||||
title: "Weniger Reden, Mehr Ergebnisse",
|
||||
expertise: "15+ Jahre Perfektion in der Kunst, Technologie für Unternehmen arbeiten zu lassen",
|
||||
methods: [
|
||||
{
|
||||
title: "Fokus auf Wirkung",
|
||||
description: "Jede Lösung muss Ihr Unternehmen voranbringen"
|
||||
},
|
||||
{
|
||||
title: "Geschwindigkeit der Umsetzung",
|
||||
description: "Schnelle Bereitstellung, sofortige Ergebnisse"
|
||||
},
|
||||
{
|
||||
title: "Kontinuierliche Evolution",
|
||||
description: "Ihr Tech-Stack entwickelt sich mit Ihrem Wachstum"
|
||||
}
|
||||
],
|
||||
highlights: "• Microsoft MVP-Level Expertise\n• Power Automate Flows, die Tausende von Stunden sparen\n• KI-Integrationen, die wirklich Sinn machen\n• Enterprise-Lösungen mit Startup-Agilität"
|
||||
},
|
||||
cta: {
|
||||
button: "STARTEN SIE IHRE TRANSFORMATION",
|
||||
title: "Bereit, Ihre Effizienz zu Verzehnfachen?",
|
||||
subtitle: "Premium-Automatisierungslösungen • Garantierte Ergebnisse • Blitzschnelle Umsetzung"
|
||||
},
|
||||
contact: {
|
||||
title: "Lassen Sie uns Etwas Großartiges Schaffen",
|
||||
subtitle: "Bereit, Ihren Weg zum Erfolg zu automatisieren? Schreiben Sie mir und lassen Sie uns Ihr Unternehmen unaufhaltbar machen.",
|
||||
description: "Schnelle Antwort garantiert • Enterprise-bereite Lösungen • Messbare Ergebnisse",
|
||||
fields: {
|
||||
name: "👋 Ihr Name",
|
||||
namePlaceholder: "Wie soll ich Sie nennen?",
|
||||
email: "📧 E-Mail",
|
||||
emailPlaceholder: "ihre.email@firma.de",
|
||||
message: "💭 Erzählen Sie mir von Ihrem Projekt",
|
||||
messagePlaceholder: "Welcher Geschäftsprozess macht Sie verrückt? Was würden Sie automatisieren, wenn Sie einen Zauberstab schwingen könnten?"
|
||||
},
|
||||
disclaimer: "🔒 Ihre Daten bleiben privat. Kein Spam, nur Lösungen."
|
||||
}
|
||||
},
|
||||
fr: {
|
||||
hero: {
|
||||
title: "Transformez Votre Entreprise",
|
||||
subtitle: "Libérez la puissance de l'automatisation IA • Maîtrise Microsoft 365 • Intégrations personnalisées qui fonctionnent vraiment"
|
||||
},
|
||||
actions: {
|
||||
learnMore: "Enflammez Votre Business",
|
||||
contactMe: "Parlons-En"
|
||||
},
|
||||
services: {
|
||||
tagline: "CENTRALE D'AUTOMATISATION",
|
||||
title: "Services Qui Font Vraiment la Différence",
|
||||
subtitle: "Arrêtez de perdre du temps sur les tâches manuelles. Automatisons tout et regardons votre productivité exploser.",
|
||||
items: [
|
||||
{
|
||||
title: "Magie Power Automate",
|
||||
description: "Transformez les tâches de 8 heures en workflows de 5 minutes"
|
||||
},
|
||||
{
|
||||
title: "Chatbots IA Qui Marchent",
|
||||
description: "Des bots intelligents qui comprennent vraiment votre entreprise"
|
||||
},
|
||||
{
|
||||
title: "Sorcellerie d'Intégration API",
|
||||
description: "Connectez tout à tout"
|
||||
},
|
||||
{
|
||||
title: "Optimisation Microsoft 365",
|
||||
description: "Faites fonctionner M365 comme ça aurait dû être dès le premier jour"
|
||||
},
|
||||
{
|
||||
title: "SharePoint Qui Ne Craint Pas",
|
||||
description: "Enfin, un SharePoint que les gens veulent vraiment utiliser"
|
||||
},
|
||||
{
|
||||
title: "Infrastructure Qui Scale",
|
||||
description: "Des systèmes solides comme le roc qui grandissent avec vous"
|
||||
}
|
||||
]
|
||||
},
|
||||
approach: {
|
||||
tagline: "LA MÉTHODE BERGSMA",
|
||||
title: "Moins de Blabla, Plus de Résultats",
|
||||
expertise: "15+ années à perfectionner l'art de faire fonctionner la technologie pour les entreprises",
|
||||
methods: [
|
||||
{
|
||||
title: "Focus sur l'Impact",
|
||||
description: "Chaque solution doit faire avancer votre entreprise"
|
||||
},
|
||||
{
|
||||
title: "Vitesse d'Implémentation",
|
||||
description: "Déploiement rapide, résultats immédiats"
|
||||
},
|
||||
{
|
||||
title: "Évolution Continue",
|
||||
description: "Votre stack tech évolue avec votre croissance"
|
||||
}
|
||||
],
|
||||
highlights: "• Expertise niveau Microsoft MVP\n• Flux Power Automate qui économisent des milliers d'heures\n• Intégrations IA qui ont vraiment du sens\n• Solutions d'entreprise avec l'agilité des startups"
|
||||
},
|
||||
cta: {
|
||||
button: "LANCEZ VOTRE TRANSFORMATION",
|
||||
title: "Prêt à Multiplier Votre Efficacité par 10 ?",
|
||||
subtitle: "Solutions d'automatisation premium • Résultats garantis • Implémentation ultra-rapide"
|
||||
},
|
||||
contact: {
|
||||
title: "Créons Quelque Chose d'Extraordinaire",
|
||||
subtitle: "Prêt à automatiser votre chemin vers le succès ? Envoyez-moi un message et rendons votre entreprise inarrêtable.",
|
||||
description: "Réponse rapide garantie • Solutions prêtes pour l'entreprise • Résultats mesurables",
|
||||
fields: {
|
||||
name: "👋 Votre Nom",
|
||||
namePlaceholder: "Comment dois-je vous appeler ?",
|
||||
email: "📧 Email",
|
||||
emailPlaceholder: "votre.email@entreprise.fr",
|
||||
message: "💭 Parlez-moi de Votre Projet",
|
||||
messagePlaceholder: "Quel processus métier vous rend fou ? Qu'automatiseriez-vous si vous pouviez agiter une baguette magique ?"
|
||||
},
|
||||
disclaimer: "🔒 Vos infos restent privées. Pas de spam, que des solutions."
|
||||
}
|
||||
}
|
||||
hero: {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
};
|
||||
actions: {
|
||||
learnMore: string;
|
||||
contactMe: string;
|
||||
};
|
||||
services: {
|
||||
tagline: string;
|
||||
title: string;
|
||||
subtitle: string;
|
||||
items: {
|
||||
title: string;
|
||||
description: string;
|
||||
}[];
|
||||
};
|
||||
approach: {
|
||||
tagline: string;
|
||||
title: string;
|
||||
expertise: string;
|
||||
methods: {
|
||||
title: string;
|
||||
description: string;
|
||||
}[];
|
||||
highlights: string;
|
||||
};
|
||||
cta: {
|
||||
button: string;
|
||||
title: string;
|
||||
subtitle: string;
|
||||
};
|
||||
contact: {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
description: string;
|
||||
fields: {
|
||||
name: string;
|
||||
namePlaceholder: string;
|
||||
email: string;
|
||||
emailPlaceholder: string;
|
||||
message: string;
|
||||
messagePlaceholder: string;
|
||||
};
|
||||
disclaimer: string;
|
||||
};
|
||||
}
|
||||
|
||||
export const supportedLanguages = ['en', 'nl', 'de', 'fr'] as const;
|
||||
|
||||
export function getExplosiveHomepageTranslation(lang: string): ExplosiveHomepageTranslation {
|
||||
return explosiveHomepageTranslations[lang] || explosiveHomepageTranslations['en'];
|
||||
}
|
||||
|
||||
export const explosiveHomepageTranslations: Record<string, ExplosiveHomepageTranslation> = {
|
||||
en: {
|
||||
hero: {
|
||||
title: 'Transform Your Business',
|
||||
subtitle: 'Unleash the power of AI automation • Microsoft 365 mastery • Custom integrations that actually work',
|
||||
},
|
||||
actions: {
|
||||
learnMore: 'Ignite Your Business',
|
||||
contactMe: "Let's Talk",
|
||||
},
|
||||
services: {
|
||||
tagline: 'AUTOMATION POWERHOUSE',
|
||||
title: 'Services That Actually Move the Needle',
|
||||
subtitle: "Stop wasting time on manual tasks. Let's automate everything and watch your productivity explode.",
|
||||
items: [
|
||||
{
|
||||
title: 'Power Automate Magic',
|
||||
description: 'Turn 8-hour tasks into 5-minute workflows',
|
||||
},
|
||||
{
|
||||
title: 'AI Chatbots That Work',
|
||||
description: 'Smart bots that actually understand your business',
|
||||
},
|
||||
{
|
||||
title: 'API Integration Wizardry',
|
||||
description: 'Connect everything to everything',
|
||||
},
|
||||
{
|
||||
title: 'Microsoft 365 Optimization',
|
||||
description: 'Make M365 work like it should have from day one',
|
||||
},
|
||||
{
|
||||
title: "SharePoint That Doesn't Suck",
|
||||
description: 'Finally, SharePoint that people actually want to use',
|
||||
},
|
||||
{
|
||||
title: 'Infrastructure That Scales',
|
||||
description: 'Rock-solid systems that grow with you',
|
||||
},
|
||||
],
|
||||
},
|
||||
approach: {
|
||||
tagline: 'THE BERGSMA METHOD',
|
||||
title: 'Less Talk, More Results',
|
||||
expertise: '15+ years perfecting the art of making technology work for business',
|
||||
methods: [
|
||||
{
|
||||
title: 'Focus on Impact',
|
||||
description: 'Every solution must move your business forward',
|
||||
},
|
||||
{
|
||||
title: 'Speed of Implementation',
|
||||
description: 'Fast deployment, immediate results',
|
||||
},
|
||||
{
|
||||
title: 'Continuous Evolution',
|
||||
description: 'Your tech stack evolves as you grow',
|
||||
},
|
||||
],
|
||||
highlights:
|
||||
'• Microsoft MVP-level expertise\n• Power Automate flows that save thousands of hours\n• AI integrations that actually make sense\n• Enterprise solutions with startup agility',
|
||||
},
|
||||
cta: {
|
||||
button: 'LAUNCH YOUR TRANSFORMATION',
|
||||
title: 'Ready to 10X Your Efficiency?',
|
||||
subtitle: 'Premium automation solutions • Guaranteed results • Lightning-fast implementation',
|
||||
},
|
||||
contact: {
|
||||
title: "Let's Build Something Amazing",
|
||||
subtitle: "Ready to automate your way to success? Drop me a line and let's make your business unstoppable.",
|
||||
description: 'Fast response guaranteed • Enterprise-ready solutions • Results you can measure',
|
||||
fields: {
|
||||
name: '👋 Your Name',
|
||||
namePlaceholder: 'What should I call you?',
|
||||
email: '📧 Email',
|
||||
emailPlaceholder: 'your.email@company.com',
|
||||
message: '💭 Tell Me About Your Project',
|
||||
messagePlaceholder:
|
||||
'What business process is driving you crazy? What would you automate if you could wave a magic wand?',
|
||||
},
|
||||
disclaimer: '🔒 Your info stays private. No spam, just solutions.',
|
||||
},
|
||||
},
|
||||
"nl": {
|
||||
"hero": {
|
||||
"title": "Maak Je Bedrijf Toekomstbestendig",
|
||||
"subtitle": "Ontgrendel de kracht van AI-automatisering • Microsoft 365-expertise • Maatwerk integraties die écht werken"
|
||||
},
|
||||
"actions": {
|
||||
"learnMore": "Begin Nu",
|
||||
"contactMe": "Neem Contact Op"
|
||||
},
|
||||
"services": {
|
||||
"tagline": "KRACHTCENTRALE VOOR AUTOMATISERING",
|
||||
"title": "Diensten Die Écht Impact Maken",
|
||||
"subtitle": "Verspil geen tijd meer aan handmatige taken. Laten we automatiseren en je productiviteit naar een hoger niveau tillen.",
|
||||
"items": [
|
||||
{
|
||||
"title": "Power Automate-Expertise",
|
||||
"description": "Maak van 8-uurstaken workflows van 5 minuten"
|
||||
},
|
||||
{
|
||||
"title": "AI-Chatbots Die Werken",
|
||||
"description": "Slimme bots die jouw organisatie écht begrijpen"
|
||||
},
|
||||
{
|
||||
"title": "Krachtige API-integraties",
|
||||
"description": "Verbind systemen naadloos met elkaar"
|
||||
},
|
||||
{
|
||||
"title": "Microsoft 365 Optimalisatie",
|
||||
"description": "Laat M365 werken zoals het vanaf dag één bedoeld was"
|
||||
},
|
||||
{
|
||||
"title": "SharePoint Die Wel Werkt",
|
||||
"description": "Eindelijk een SharePoint-oplossing die mensen graag gebruiken"
|
||||
},
|
||||
{
|
||||
"title": "Schaalbare Infrastructuur",
|
||||
"description": "Betrouwbare systemen die met je bedrijf meegroeien"
|
||||
}
|
||||
]
|
||||
},
|
||||
"approach": {
|
||||
"tagline": "DE BERGSMA-METHODE",
|
||||
"title": "Minder Woorden, Meer Resultaten",
|
||||
"expertise": "Meer dan 15 jaar ervaring in technologie die écht werkt voor bedrijven",
|
||||
"methods": [
|
||||
{
|
||||
"title": "Focus op Impact",
|
||||
"description": "Elke oplossing moet je organisatie vooruithelpen"
|
||||
},
|
||||
{
|
||||
"title": "Snelle Implementatie",
|
||||
"description": "Snelle levering, direct resultaat"
|
||||
},
|
||||
{
|
||||
"title": "Continue Ontwikkeling",
|
||||
"description": "Je techstack groeit mee met je ambities"
|
||||
}
|
||||
],
|
||||
"highlights": "• Microsoft MVP-niveau expertise\n• Power Automate-flows die duizenden uren besparen\n• AI-integraties met echte meerwaarde\n• Enterprise-oplossingen met de wendbaarheid van een startup"
|
||||
},
|
||||
"cta": {
|
||||
"button": "START JE TRANSFORMATIE",
|
||||
"title": "Klaar om je efficiëntie te vertienvoudigen?",
|
||||
"subtitle": "Premium automatiseringsoplossingen • Gegarandeerd resultaat • Snelle implementatie"
|
||||
},
|
||||
"contact": {
|
||||
"title": "Laten We Samen Iets Geweldigs Bouwen",
|
||||
"subtitle": "Klaar om je pad naar succes te automatiseren? Stuur me een bericht en laten we je bedrijf onweerstaanbaar maken.",
|
||||
"description": "Snelle reactie gegarandeerd • Enterprise-ready oplossingen • Meetbare resultaten",
|
||||
"fields": {
|
||||
"name": "👋 Jouw Naam",
|
||||
"namePlaceholder": "Hoe kan ik je aanspreken?",
|
||||
"email": "📧 E-mail",
|
||||
"emailPlaceholder": "jouw.email@bedrijf.nl",
|
||||
"message": "💭 Vertel me over je project",
|
||||
"messagePlaceholder": "Welk bedrijfsproces frustreert je het meest? Wat zou je automatiseren als alles mogelijk was?"
|
||||
},
|
||||
"disclaimer": "🔒 Jouw gegevens blijven privé. Geen spam – alleen oplossingen."
|
||||
}
|
||||
},
|
||||
de: {
|
||||
hero: {
|
||||
title: 'Machen Sie Ihr Unternehmen zukunftssicher',
|
||||
subtitle:
|
||||
'Entfesseln Sie die Kraft der KI-Automatisierung • Microsoft 365-Expertise • Maßgeschneiderte Integrationen, die wirklich funktionieren',
|
||||
},
|
||||
actions: {
|
||||
learnMore: 'Jetzt durchstarten',
|
||||
contactMe: 'Lassen Sie uns sprechen',
|
||||
},
|
||||
services: {
|
||||
tagline: 'AUTOMATISIERUNGS-KRAFTWERK',
|
||||
title: 'Services, die wirklich Wirkung zeigen',
|
||||
subtitle:
|
||||
'Verschwenden Sie keine Zeit mehr mit manuellen Aufgaben. Lassen Sie uns automatisieren – für maximale Produktivität.',
|
||||
items: [
|
||||
{
|
||||
title: 'Power-Automate-Magie',
|
||||
description: 'Verwandeln Sie 8-Stunden-Aufgaben in 5-Minuten-Workflows',
|
||||
},
|
||||
{
|
||||
title: 'KI-Chatbots, die funktionieren',
|
||||
description: 'Intelligente Bots, die Ihr Unternehmen wirklich verstehen',
|
||||
},
|
||||
{
|
||||
title: 'API-Integrationen mit System',
|
||||
description: 'Verbinden Sie Ihre Systeme nahtlos miteinander',
|
||||
},
|
||||
{
|
||||
title: 'Microsoft 365-Optimierung',
|
||||
description: 'Nutzen Sie M365 so, wie es von Anfang an gedacht war',
|
||||
},
|
||||
{
|
||||
title: 'SharePoint, das begeistert',
|
||||
description: 'Endlich eine SharePoint-Lösung, die Nutzer wirklich schätzen',
|
||||
},
|
||||
{
|
||||
title: 'Infrastruktur, die skaliert',
|
||||
description: 'Zuverlässige Systeme, die mit Ihrem Unternehmen wachsen',
|
||||
},
|
||||
],
|
||||
},
|
||||
approach: {
|
||||
tagline: 'DIE BERGSMA-METHODE',
|
||||
title: 'Weniger reden, mehr Ergebnisse',
|
||||
expertise: 'Über 15 Jahre Erfahrung darin, Technologie effektiv für Unternehmen nutzbar zu machen',
|
||||
methods: [
|
||||
{
|
||||
title: 'Fokus auf Wirkung',
|
||||
description: 'Jede Lösung bringt Ihr Unternehmen spürbar voran',
|
||||
},
|
||||
{
|
||||
title: 'Schnelle Umsetzung',
|
||||
description: 'Kurze Projektlaufzeiten, messbare Ergebnisse',
|
||||
},
|
||||
{
|
||||
title: 'Kontinuierliche Weiterentwicklung',
|
||||
description: 'Ihr Tech-Stack wächst mit Ihrem Unternehmen',
|
||||
},
|
||||
],
|
||||
highlights:
|
||||
'• Microsoft MVP-Level-Expertise\n• Power-Automate-Flows, die Tausende Stunden sparen\n• KI-Integrationen mit echtem Mehrwert\n• Enterprise-Lösungen mit Startup-Agilität',
|
||||
},
|
||||
cta: {
|
||||
button: 'STARTEN SIE IHRE TRANSFORMATION',
|
||||
title: 'Bereit, Ihre Effizienz zu verzehnfachen?',
|
||||
subtitle: 'Premium-Automatisierung • Garantierte Ergebnisse • Rasche Umsetzung',
|
||||
},
|
||||
contact: {
|
||||
title: 'Lassen Sie uns etwas Großartiges schaffen',
|
||||
subtitle:
|
||||
'Bereit, Ihre Prozesse zu automatisieren? Schreiben Sie mir – gemeinsam machen wir Ihr Unternehmen unaufhaltbar.',
|
||||
description: 'Schnelle Antwort garantiert • Lösungen auf Enterprise-Niveau • Nachweisbare Resultate',
|
||||
fields: {
|
||||
name: '👋 Ihr Name',
|
||||
namePlaceholder: 'Wie darf ich Sie ansprechen?',
|
||||
email: '📧 E-Mail',
|
||||
emailPlaceholder: 'ihre.email@firma.de',
|
||||
message: '💭 Erzählen Sie mir von Ihrem Projekt',
|
||||
messagePlaceholder:
|
||||
'Welcher Geschäftsprozess bereitet Ihnen Kopfzerbrechen? Was würden Sie automatisieren, wenn alles möglich wäre?',
|
||||
},
|
||||
disclaimer: '🔒 Ihre Daten sind bei uns sicher. Kein Spam – nur Lösungen.',
|
||||
},
|
||||
},
|
||||
fr: {
|
||||
hero: {
|
||||
title: 'Rendez Votre Entreprise Pérenne',
|
||||
subtitle:
|
||||
'Libérez la puissance de l’automatisation par l’IA • Maîtrise de Microsoft 365 • Intégrations sur mesure, fiables et efficaces',
|
||||
},
|
||||
actions: {
|
||||
learnMore: 'Commencez dès maintenant',
|
||||
contactMe: 'Contactons-nous',
|
||||
},
|
||||
services: {
|
||||
tagline: 'CENTRALE D’AUTOMATISATION',
|
||||
title: 'Des Services Qui Font Vraiment la Différence',
|
||||
subtitle:
|
||||
'Ne perdez plus de temps avec des tâches manuelles. Automatisez intelligemment et boostez votre productivité.',
|
||||
items: [
|
||||
{
|
||||
title: 'L’Excellence de Power Automate',
|
||||
description: 'Transformez des tâches de 8 heures en workflows de 5 minutes',
|
||||
},
|
||||
{
|
||||
title: 'Des Chatbots IA Performants',
|
||||
description: 'Des bots intelligents qui comprennent vraiment votre activité',
|
||||
},
|
||||
{
|
||||
title: 'Intégrations API Fiables',
|
||||
description: 'Connectez vos outils, sans limites',
|
||||
},
|
||||
{
|
||||
title: 'Optimisation de Microsoft 365',
|
||||
description: 'Faites fonctionner M365 comme il aurait dû dès le départ',
|
||||
},
|
||||
{
|
||||
title: 'Un SharePoint qui Donne Envie',
|
||||
description: 'Enfin un SharePoint que vos équipes aiment utiliser',
|
||||
},
|
||||
{
|
||||
title: 'Infrastructure Scalable',
|
||||
description: 'Des systèmes robustes qui évoluent avec votre entreprise',
|
||||
},
|
||||
],
|
||||
},
|
||||
approach: {
|
||||
tagline: 'LA MÉTHODE BERGSMA',
|
||||
title: 'Moins de Théorie, Plus de Résultats',
|
||||
expertise: 'Plus de 15 ans à perfectionner l’art de faire de la technologie un moteur pour les entreprises',
|
||||
methods: [
|
||||
{
|
||||
title: 'Concentration sur l’Impact',
|
||||
description: 'Chaque solution doit réellement faire progresser votre entreprise',
|
||||
},
|
||||
{
|
||||
title: 'Mise en Œuvre Rapide',
|
||||
description: 'Déploiement agile, résultats concrets',
|
||||
},
|
||||
{
|
||||
title: 'Évolution Continue',
|
||||
description: 'Votre stack technologique évolue au rythme de votre croissance',
|
||||
},
|
||||
],
|
||||
highlights:
|
||||
'• Expertise de niveau Microsoft MVP\n• Flows Power Automate économisant des milliers d’heures\n• Intégrations IA pertinentes et efficaces\n• Solutions d’entreprise avec l’agilité des startups',
|
||||
},
|
||||
cta: {
|
||||
button: 'DÉMARREZ VOTRE TRANSFORMATION',
|
||||
title: 'Prêt à décupler votre efficacité ?',
|
||||
subtitle: 'Solutions d’automatisation haut de gamme • Résultats garantis • Déploiement rapide',
|
||||
},
|
||||
contact: {
|
||||
title: 'Créons Ensemble Quelque Chose d’Exceptionnel',
|
||||
subtitle: 'Vous êtes prêt à automatiser votre succès ? Écrivez-moi et donnons à votre entreprise un nouvel élan.',
|
||||
description: 'Réponse rapide assurée • Solutions prêtes pour l’entreprise • Résultats mesurables',
|
||||
fields: {
|
||||
name: '👋 Votre Nom',
|
||||
namePlaceholder: 'Comment puis-je vous appeler ?',
|
||||
email: '📧 Email',
|
||||
emailPlaceholder: 'votre.email@entreprise.fr',
|
||||
message: '💭 Présentez-moi Votre Projet',
|
||||
messagePlaceholder:
|
||||
'Quel processus métier vous ralentit ? Qu’aimeriez-vous automatiser si tout était possible ?',
|
||||
},
|
||||
disclaimer: '🔒 Vos données sont confidentielles. Aucune publicité – uniquement des solutions concrètes.',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
Reference in New Issue
Block a user