forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.config.tsx
More file actions
36 lines (34 loc) · 869 Bytes
/
Copy pathlayout.config.tsx
File metadata and controls
36 lines (34 loc) · 869 Bytes
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
import { type HomeLayoutProps } from 'fumadocs-ui/home-layout';
import { Logo } from "./logo";
import { FaDiscord, FaEdit } from 'react-icons/fa';
import { FaXTwitter } from 'react-icons/fa6';
/**
* Shared layout configurations
*
* you can configure layouts individually from:
* Home Layout: app/(home)/layout.tsx
* Docs Layout: app/docs/layout.tsx
*/
export const baseOptions: HomeLayoutProps = {
githubUrl: "https://github.com/copilotkit/copilotkit",
nav: {
title: <Logo />,
},
links: [
{
text: "Feedback",
url: "https://github.com/CopilotKit/CopilotKit/issues/new/choose",
icon: <FaEdit />,
},
{
text: "Discord",
url: "https://discord.com/invite/6dffbvGU3D",
icon: <FaDiscord />,
},
{
text: "Twitter",
url: "https://x.com/copilotkit",
icon: <FaXTwitter />,
},
],
};