-
404
-
PAGE NOT FOUND
+
{{ themeData.notFound?.code ?? '404' }}
+
{{ themeData.notFound?.title ?? 'PAGE NOT FOUND' }}
- But if you don't change your direction, and if you keep looking, you
- may end up where you are heading.
+ {{ themeData.notFound?.quote ?? `But if you don't change your direction, and if you keep looking, you may end up where you are heading.` }}
diff --git a/packages/theme/src/shared/options/locale.ts b/packages/theme/src/shared/options/locale.ts
index b60794da..f6d9092d 100644
--- a/packages/theme/src/shared/options/locale.ts
+++ b/packages/theme/src/shared/options/locale.ts
@@ -177,14 +177,24 @@ export interface PlumeThemeLocaleData extends LocaleData {
*/
openInNewWindow?: string | boolean
- // notFound?: string[]
-
// backToHome?: string
+ sidebarMenuLabel?: string
+
+ returnToTopLabel?: string
+
footer?:
| false
| {
message?: string
copyright?: string
}
+
+ notFound?: {
+ code?: string | number
+ title?: string
+ quote?: string
+ linkLabel?: string
+ linkText?: string
+ }
}