mirror of
https://github.com/LibreChat-AI/librechat.ai.git
synced 2026-03-27 02:38:32 +07:00
* feat: update table of content style in DocsPage component * feat: add feedback widget, redesign DocsHub, and add sidebar logo * feat: update demo images for dark and light themes * feat: update demo images for dark and light themes * feat: replace logo image and remove duplicate SVG file * feat: add LocalInstallHub component and update documentation for local installation * feat: enhance UI by updating feature icons and descriptions, and improving layout responsiveness * Add legal pages: Cookie Policy, Privacy Policy, and Terms of Service - Implemented Cookie Policy page with details on cookie usage and user privacy. - Created Privacy Policy page outlining data collection practices and user rights. - Developed Terms of Service page defining the usage terms for the documentation site. - Removed outdated MDX files for cookie, privacy, and terms of service. - Updated FeaturesHub component to include new feature highlights and improved layout. * feat: enhance GitHub data fetching to include contributor count and update CommunitySection layout
30 lines
609 B
TypeScript
30 lines
609 B
TypeScript
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared'
|
|
|
|
export const baseOptions: BaseLayoutProps = {
|
|
nav: {
|
|
title: (
|
|
<>
|
|
{/* eslint-disable-next-line @next/next/no-img-element */}
|
|
<img src="/librechat.svg" alt="" width={20} height={20} aria-hidden="true" />
|
|
LibreChat
|
|
</>
|
|
),
|
|
},
|
|
links: [
|
|
{
|
|
text: 'Docs',
|
|
url: '/docs',
|
|
active: 'nested-url',
|
|
},
|
|
{
|
|
text: 'Blog',
|
|
url: '/blog',
|
|
},
|
|
{
|
|
text: 'Changelog',
|
|
url: '/changelog',
|
|
},
|
|
],
|
|
githubUrl: 'https://github.com/danny-avila/LibreChat',
|
|
}
|