Revamp homepage with explosive design and enhanced interactivity
- Introduced a new explosive hero section featuring vibrant animations and floating orbs for a dynamic visual experience. - Updated the layout to utilize a new translation method for improved content management. - Enhanced call-to-action buttons with modern styling and animations for better user engagement. - Implemented responsive design adjustments to ensure optimal viewing on various devices. - Replaced static content with dynamic elements, improving the overall interactivity and appeal of the homepage.
This commit is contained in:
377
src/i18n/translations.homepage.ts
Normal file
377
src/i18n/translations.homepage.ts
Normal file
@@ -0,0 +1,377 @@
|
||||
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\nPower Automate flows that save thousands of hours\nAI integrations that actually make sense\nEnterprise 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\nPower Automate flows die duizenden uren besparen\nAI integraties die echt logisch zijn\nEnterprise 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: "Transformieren Sie Ihr Unternehmen",
|
||||
subtitle: "Entfesseln Sie die Macht der KI-Automatisierung • Microsoft 365 Meisterschaft • Maßgeschneiderte Integrationen, die wirklich funktionieren"
|
||||
},
|
||||
actions: {
|
||||
learnMore: "Zünden Sie Ihr Business",
|
||||
contactMe: "Sprechen Wir"
|
||||
},
|
||||
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\nPower Automate Flows, die Tausende von Stunden sparen\nKI-Integrationen, die wirklich Sinn machen\nEnterprise-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\nFlux Power Automate qui économisent des milliers d'heures\nIntégrations IA qui ont vraiment du sens\nSolutions 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."
|
||||
}
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user