generated from timelessco/next-ts-app-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.config.js
35 lines (35 loc) · 1.3 KB
/
theme.config.js
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
/* eslint-disable import/no-anonymous-default-export */
export default {
// Project Repo
projectLink: "https://github.com/adaptui",
// Docs Repo
docsRepositoryBase: "https://github.com/adaptui/react-tailwind-docs",
// Docs Path in the above repo
titleSuffix: " – AdaptUI",
search: true,
unstable_flexsearch: true,
floatTOC: true,
feedbackLink: "Question? Give us feedback →",
feedbackLabels: "feedback",
logo: (
<span className="mr-2 hidden font-extrabold md:inline">AdaptUI Docs</span>
),
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta httpEquiv="Content-Language" content="en" />
<meta name="og:title" content="AdaptUI Docs" />
<meta
name="description"
content="Collection of headless components/hooks that are accessible, composable, customizable from low level to build your own UI & Design System powered by Ariakit."
/>
<meta
name="og:description"
content="Collection of headless components/hooks that are accessible, composable, customizable from low level to build your own UI & Design System powered by Ariakit."
/>
</>
),
footer: true,
footerEditLink: "Edit this page on GitHub →",
footerText: <>MIT {new Date().getFullYear()} © Timeless.</>,
};