Add Uptime link to footer and update translations

- Introduced a new Uptime link in the footer for system status monitoring.
- Updated translations to include the Uptime label in the footer.
- Simplified page title for improved clarity and focus on IT systems and automation.
This commit is contained in:
becarta
2025-06-08 02:59:58 +02:00
parent a084480695
commit cdc09fc4a5
4 changed files with 4 additions and 7 deletions

View File

@@ -125,12 +125,6 @@ const {
</a> </a>
)) ))
} }
<a
class="hover:text-gray-700 hover:underline dark:hover:text-gray-200 transition duration-150 ease-in-out"
href="/uptime"
>
Uptime
</a>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -25,6 +25,7 @@ export interface Translation {
footer: { footer: {
terms: string; terms: string;
privacyPolicy: string; privacyPolicy: string;
uptime: string;
}; };
cookies: { cookies: {
message: string; message: string;
@@ -177,6 +178,7 @@ export const translations: Record<string, Translation> = {
footer: { footer: {
terms: 'Terms', terms: 'Terms',
privacyPolicy: 'Privacy Policy', privacyPolicy: 'Privacy Policy',
uptime: 'Uptime',
}, },
hero: { hero: {
title: 'Unlock Your Business Potential with Expert IT Automation', title: 'Unlock Your Business Potential with Expert IT Automation',

View File

@@ -74,6 +74,7 @@ export const getFooterData = (lang = 'en') => {
secondaryLinks: [ secondaryLinks: [
{ text: t.footer.terms, href: getPermalink('/terms', 'page', lang) }, { text: t.footer.terms, href: getPermalink('/terms', 'page', lang) },
{ text: t.footer.privacyPolicy, href: getPermalink('/privacy', 'page', lang) }, { text: t.footer.privacyPolicy, href: getPermalink('/privacy', 'page', lang) },
{ text: t.footer.uptime, href: getPermalink('/uptime', 'page', lang) },
], ],
socialLinks: [ socialLinks: [
{ ariaLabel: 'LinkedIn', icon: 'tabler:brand-linkedin', href: 'https://www.linkedin.com/in/rrpbergsma' }, { ariaLabel: 'LinkedIn', icon: 'tabler:brand-linkedin', href: 'https://www.linkedin.com/in/rrpbergsma' },

View File

@@ -24,7 +24,7 @@ if (!supportedLanguages.includes(lang)) {
const t = getTranslation(lang); const t = getTranslation(lang);
const metadata = { const metadata = {
title: '365DevNet | IT Systems & Automation for Businesses | Richard Bergsma', title: 'IT Systems & Automation for Businesses',
description: 'IT systems & automation for businesses. Microsoft 365, Power Automate, and cloud solutions by Richard Bergsma.' description: 'IT systems & automation for businesses. Microsoft 365, Power Automate, and cloud solutions by Richard Bergsma.'
}; };
--- ---