From abd50c0aacd1ecab5b2f626e726a5b22a3109673 Mon Sep 17 00:00:00 2001
From: Michael Fransman <30863830+mikeyfe6@users.noreply.github.com>
Date: Sun, 29 Sep 2024 12:58:48 +0200
Subject: [PATCH] fixed some issue regarding missing return in head
---
src/i18n/en.js | 3 +--
src/i18n/nl.js | 3 +--
.../diensten/onderhoud-updates-uitvoeren.jsx | 24 ++++++++++---------
3 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/src/i18n/en.js b/src/i18n/en.js
index 8fd0057..2395795 100644
--- a/src/i18n/en.js
+++ b/src/i18n/en.js
@@ -129,8 +129,7 @@ export default {
superPowersEmail: 'Have an email template created',
superPowersEmailInfo:
'Customized email templates that match your branding and ensure a consistent and professional look in all your email communications.',
- superPowersMaintenance:
- 'Perform maintenance and / or updates.',
+ superPowersMaintenance: 'Perform maintenance and / or updates',
superPowersMaintenanceInfo:
'Regular maintenance and updates to ensure the optimal performance and security of your website or web application. We ensure that everything stays up to date and functions smoothly.',
superPowersSeo: 'Search Engine Optimization (SEO)',
diff --git a/src/i18n/nl.js b/src/i18n/nl.js
index ada9a7f..81aced5 100644
--- a/src/i18n/nl.js
+++ b/src/i18n/nl.js
@@ -128,8 +128,7 @@ export default {
superPowersEmail: 'E-mail template laten maken',
superPowersEmailInfo:
'Op maat gemaakte e-mail templates die passen bij jouw branding en zorgen voor een consistente en professionele uitstraling in al je e-mailcommunicatie.',
- superPowersMaintenance:
- 'Onderhoud en / of updates uitvoeren.',
+ superPowersMaintenance: 'Onderhoud en / of updates uitvoeren',
superPowersMaintenanceInfo:
'Regelmatig onderhoud en updates om de optimale prestaties en veiligheid van je website of webapplicatie te garanderen. Wij zorgen ervoor dat alles up-to-date blijft en probleemloos functioneert.',
superPowersSeo: 'Zoekmachine Optimalisatie (SEO)',
diff --git a/src/pages/diensten/onderhoud-updates-uitvoeren.jsx b/src/pages/diensten/onderhoud-updates-uitvoeren.jsx
index 9cce8a6..235fe8c 100644
--- a/src/pages/diensten/onderhoud-updates-uitvoeren.jsx
+++ b/src/pages/diensten/onderhoud-updates-uitvoeren.jsx
@@ -17,10 +17,10 @@ const MaintenancePage = () => {
return (
-
+
+ {t('superPowersMaintenance')}
+ .
+
{t('superPowersMaintenanceInfo')}
@@ -63,13 +63,15 @@ export const Head = () => {
],
};
- ;
+ keywords=""
+ pathname="/diensten/onderhoud-updates-uitvoeren/"
+ schemaMarkup={breadcrumbSchema}
+ />
+ );
};