forked from denniskigen/o3-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.tsx
69 lines (66 loc) · 1.63 KB
/
theme.config.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
import {
editTextMap,
feedbackLinkMap,
gitTimestampMap,
searchPlaceholderMap,
tableOfContentsTitleMap,
} from "./translations/text";
import useLocalesMap from "./components/use-locales-map";
import Head from "./components/head";
import NavLogo from "./components/nav-logo";
import { useRouter } from "next/router";
const config: DocsThemeConfig = {
logo: <NavLogo />,
head: <Head />,
useNextSeoProps() {
return {
titleTemplate: "%s – O3 Docs",
};
},
project: {
link: "https://github.com/denniskigen/o3-docs",
},
docsRepositoryBase: "https://github.com/denniskigen/o3-docs/blob/main",
footer: {
text: `© ${new Date().getFullYear()} OpenMRS`,
},
nextThemes: {
defaultTheme: "system",
},
i18n: [
{ locale: "en-US", text: "English" },
{ locale: "fr-FR", text: "French" },
],
editLink: {
text: () => useLocalesMap(editTextMap),
},
feedback: {
content: () => useLocalesMap(feedbackLinkMap),
},
search: {
placeholder: () => useLocalesMap(searchPlaceholderMap),
},
toc: {
float: true,
title: () => useLocalesMap(tableOfContentsTitleMap),
},
gitTimestamp({ timestamp }) {
const { locale } = useRouter();
const lastUpdatedOn = useLocalesMap(gitTimestampMap);
return (
<>
{lastUpdatedOn}{" "}
<time dateTime={timestamp.toISOString()}>
{timestamp.toLocaleDateString(locale, {
day: "numeric",
month: "long",
year: "numeric",
})}
</time>
</>
);
},
};
export default config;