-
Notifications
You must be signed in to change notification settings - Fork 2
/
theme.config.tsx
53 lines (51 loc) · 1.32 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
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
import { LogoImage } from "./partials/logo";
const config: DocsThemeConfig = {
logo: <LogoImage />,
project: {
link: "https://github.com/dryerjs/dryerjs",
},
chat: {
link: "https://discord.gg/mBZN86W5Fa",
},
feedback: {
useLink: () => "https://github.com/dryerjs/dryerjs/issues/new/choose",
},
docsRepositoryBase: "https://github.com/dryerjs/docs/blob/master",
footer: {
text: "DryerJS © 2023 - All rights reserved.",
},
primaryHue: 161,
primarySaturation: 100,
head: null,
useNextSeoProps() {
return {
titleTemplate: "%s – DryerJS",
description:
"The fastest way to build a GraphQL API with NestJS and Mongoose",
openGraph: {
type: "website",
url: "https://dryerjs.com",
title: "DryerJS",
description:
"The fastest way to build a GraphQL API with NestJS and Mongoose",
siteName: "DryerJS",
images: [
{
url: "https://dryerjs.com/cover.jpg",
width: 1817,
height: 975,
alt: "DryerJS",
},
],
},
twitter: {
cardType: "summary_large_image",
site: "@dryerjs",
handle: "@dryerjs",
},
};
},
};
export default config;