mirror of
https://github.com/LibreChat-AI/librechat.ai.git
synced 2026-03-27 02:38:32 +07:00
* ✨ feat: update home page layout and add usage statistics components * 🔃 chore: clean up eslint-module-utils dependency entries in pnpm-lock.yaml * ✨ feat: a lot of things * ✨ feat: UI adjustements * ✨ feat: improve author card links, update background colors, and enhance layout responsiveness * chore: update bun * ✨ feat: update GitHub stars and Docker pulls statistics * ✨ feat: update demo link to new preview URL * ✨ feat: update features section with new Code Interpreter and adjust layout * ✨ feat: add emoji to Quick Start title for enhanced visibility * refactor: move user guides to features section * ✨ feat: add emojis to installation and user guides for improved clarity * ✨ feat: update Hero component title and description for clarity and enhance demo link * feat: agents page * ✨ feat: update agents documentation to clarify built-in tools and mention future integrations * ✨ feat: add Code Interpreter API documentation and update agents metadata * ✨ feat: add Code Interpreter page metadata and integrate sparkles effect in Hero component * chore: comment out NewsletterForm component in Home page * style: code interpreter gif for features box * fix: update Agents link to point to the correct features documentation * fix: pnpm lockfile * docs: API key notes for code interpreter api * refactor: improve MobileSwitch component with TypeScript types and null check * chore: types, packages * chore: update ESLint configuration and add linting step to CI workflow fix: update rotate prop type in Card component to accept number or string * docs: add section on intellectual property protection for Code Interpreter * docs: refine agents customization features in documentation * style: hero page --------- Co-authored-by: Marco Beretta <81851188+berry-13@users.noreply.github.com>
115 lines
3.8 KiB
TypeScript
115 lines
3.8 KiB
TypeScript
import React from 'react'
|
|
import { useRouter } from 'next/router'
|
|
import { GeistSans } from 'geist/font/sans'
|
|
import { DocsThemeConfig, useConfig, ThemeSwitch } from 'nextra-theme-docs'
|
|
import { Steps, Tabs, Cards, FileTree, Button } from 'nextra/components'
|
|
import { Callout } from '@/components/callouts/callout'
|
|
import Carousel from '@/components/carousel/Carousel'
|
|
import { Logo } from '@/components/logo'
|
|
import { Frame } from './components/Frame'
|
|
import { OptionTable } from 'components/table'
|
|
import FooterMenu from './components/FooterMenu'
|
|
|
|
const config: DocsThemeConfig = {
|
|
logo: <Logo />,
|
|
logoLink: '/',
|
|
project: {
|
|
link: 'https://github.com/danny-avila/LibreChat',
|
|
},
|
|
chat: {
|
|
link: 'https://discord.librechat.ai',
|
|
},
|
|
search: {
|
|
placeholder: 'Search...',
|
|
},
|
|
navbar: {
|
|
extraContent: () => {
|
|
return <>{ThemeSwitch({ lite: true, className: 'button-switch theme-switch' })}</>
|
|
},
|
|
},
|
|
sidebar: {
|
|
defaultMenuCollapseLevel: 1,
|
|
toggleButton: true,
|
|
},
|
|
|
|
editLink: {
|
|
content: 'Edit this page on GitHub',
|
|
},
|
|
toc: {
|
|
backToTop: true,
|
|
},
|
|
docsRepositoryBase: 'https://github.com/LibreChat-AI/librechat.ai/tree/main',
|
|
footer: {
|
|
content: <FooterMenu />,
|
|
},
|
|
|
|
head: () => {
|
|
const { asPath, defaultLocale, locale } = useRouter()
|
|
const { frontMatter, title: pageTitle } = useConfig()
|
|
const url = 'https://librechat.ai' + (defaultLocale === locale ? asPath : `/${locale}${asPath}`)
|
|
|
|
const description = frontMatter.description ?? ''
|
|
|
|
const title = frontMatter.title ?? pageTitle
|
|
|
|
// Default frontmatter image based on path
|
|
const defaultImage = asPath.startsWith('/docs')
|
|
? '/images/socialcards/default-docs-image.png'
|
|
: asPath.startsWith('/blog')
|
|
? '/images/socialcards/default-blog-image.png'
|
|
: asPath.startsWith('/changelog')
|
|
? '/images/socialcards/default-changelog-image.png'
|
|
: '/images/socialcards/default-image.png'
|
|
|
|
const image = frontMatter.ogImage
|
|
? 'https://www.librechat.ai' + frontMatter.ogImage // Use frontmatter image if available
|
|
: defaultImage // Use default image based on path if frontmatter image is not available
|
|
|
|
const video = frontMatter.ogVideo ? 'https://www.librechat.ai' + frontMatter.ogVideo : null
|
|
|
|
return (
|
|
<>
|
|
<meta name="theme-color" content="#000" />
|
|
<meta property="og:url" content={url} />
|
|
<meta httpEquiv="Content-Language" content="en" />
|
|
<meta name="title" content={title} />
|
|
<meta property="og:title" content={title} />
|
|
<meta name="description" content={description} />
|
|
<meta property="og:description" content={description} />
|
|
{video && <meta property="og:video" content={video} />}
|
|
<meta property="og:image" content={image} />
|
|
<meta property="twitter:image" content={image} />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:site:domain" content="librechat.ai" />
|
|
<meta name="twitter:url" content="https://librechat.ai" />
|
|
<style
|
|
dangerouslySetInnerHTML={{
|
|
__html: `html { --font-geist-sans: ${GeistSans.style.fontFamily}; }`,
|
|
}}
|
|
/>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
|
|
<meta name="msapplication-TileColor" content="#da532c" />
|
|
<meta name="theme-color" content="#080808" />
|
|
</>
|
|
)
|
|
},
|
|
|
|
components: {
|
|
Frame,
|
|
Tabs,
|
|
Steps,
|
|
Cards,
|
|
FileTree,
|
|
Callout,
|
|
Button,
|
|
Carousel,
|
|
OptionTable,
|
|
},
|
|
}
|
|
|
|
export default config
|