Skip to content

Commit

Permalink
fixed some issue regarding missing return in head
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeyfe6 committed Sep 29, 2024
1 parent cd4e306 commit abd50c0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
3 changes: 1 addition & 2 deletions src/i18n/en.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/i18n/nl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 13 additions & 11 deletions src/pages/diensten/onderhoud-updates-uitvoeren.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ const MaintenancePage = () => {

return (
<Layout>
<h1
className="page-title"
dangerouslySetInnerHTML={{ __html: t('superPowersMaintenance') }}
/>
<h1 className="page-title">
{t('superPowersMaintenance')}
<span>.</span>
</h1>
<h2 className="page-sub">{t('superPowersMaintenanceInfo')}</h2>

<section className={superPowersStyles.powers}>
Expand Down Expand Up @@ -63,13 +63,15 @@ export const Head = () => {
],
};

<SEO
title="Onderhoud en/of updates uitvoeren"
description="Regelmatig onderhoud en updates om de optimale prestaties en veiligheid
return (
<SEO
title="Onderhoud en/of updates uitvoeren"
description="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"
keywords=""
pathname="/diensten/onderhoud-updates-uitvoeren/"
schemaMarkup={breadcrumbSchema}
/>;
keywords=""
pathname="/diensten/onderhoud-updates-uitvoeren/"
schemaMarkup={breadcrumbSchema}
/>
);
};

0 comments on commit abd50c0

Please sign in to comment.