diff --git a/src/components/Footer.astro b/src/components/Footer.astro index bf7a65f..9615b75 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -83,8 +83,10 @@ const currentYear = new Date().getFullYear();
-
- {t['footer.copyright'].replace('{year}', currentYear.toString())} +
+ {t['footer.copyright'].replace('{year}', currentYear.toString())} + + {t['footer.credits']} 365devnet
{t['footer.privacy']} diff --git a/src/i18n/ui.ts b/src/i18n/ui.ts index 9d565c1..6741b9e 100644 --- a/src/i18n/ui.ts +++ b/src/i18n/ui.ts @@ -91,6 +91,7 @@ export const ui = { 'footer.copyright': '© {year} JPM Security & Services. All rights reserved.', 'footer.privacy': 'Privacy Policy', 'footer.terms': 'Terms of Service', + 'footer.credits': 'Created & managed by', }, nl: { // Header @@ -171,6 +172,7 @@ export const ui = { 'footer.copyright': '© {year} JPM Security & Services. Alle rechten voorbehouden.', 'footer.privacy': 'Privacybeleid', 'footer.terms': 'Servicevoorwaarden', + 'footer.credits': 'Gemaakt & beheerd door', }, };