From e56bbfb51f04c351108c89078c627937ebca7bef Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Sun, 13 Oct 2024 17:33:23 +0100 Subject: Refactors About and Contact pages --- src/i18n/translations/pages/contact.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/i18n/translations/pages/contact.ts (limited to 'src/i18n/translations/pages/contact.ts') diff --git a/src/i18n/translations/pages/contact.ts b/src/i18n/translations/pages/contact.ts new file mode 100644 index 0000000..0599477 --- /dev/null +++ b/src/i18n/translations/pages/contact.ts @@ -0,0 +1,11 @@ +import type { TranslationsDictionary } from '$types/TranslationsDictionary'; + +const tPage = { + title: { + sco: () => 'Contact', + 'en-GB': () => 'Contact', + }, +}; + +type Raw = typeof tPage; +export default tPage as TranslationsDictionary; -- cgit v1.2.3