Files
copilotkit__copilotkit/docs/app/layout.config.tsx
Tyler Slaton 7ef999f327 docs: adding a lot of polish to the docs
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2024-12-08 18:21:26 -05:00

37 lines
869 B
TypeScript

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 />,
},
],
};