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
108 lines
4.0 KiB
TypeScript
108 lines
4.0 KiB
TypeScript
import Link from 'next/link'
|
|
import { HomeLayout } from 'fumadocs-ui/layouts/home'
|
|
import { baseOptions } from '@/app/layout.config'
|
|
import FooterMenu from '@/components/FooterMenu'
|
|
import type { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Cookie Policy',
|
|
description: 'Cookie Policy for the LibreChat documentation website.',
|
|
}
|
|
|
|
export default function CookiePolicyPage() {
|
|
return (
|
|
<HomeLayout {...baseOptions}>
|
|
<main className="min-h-screen px-4 py-16 sm:px-6 md:py-24 lg:px-8">
|
|
<article className="prose prose-neutral dark:prose-invert mx-auto max-w-3xl">
|
|
<header className="mb-12 not-prose text-center">
|
|
<p className="mb-4 text-sm font-medium uppercase tracking-widest text-muted-foreground">
|
|
Legal
|
|
</p>
|
|
<h1 className="text-3xl font-bold tracking-tight text-foreground sm:text-4xl">
|
|
Cookie Policy
|
|
</h1>
|
|
<p className="mt-4 text-sm text-muted-foreground">Last updated: June 13, 2025</p>
|
|
</header>
|
|
|
|
<h2>No Cookies Used</h2>
|
|
<p>
|
|
The LibreChat documentation website (
|
|
<Link href="https://librechat.ai">librechat.ai</Link>){' '}
|
|
<strong>does not use cookies</strong> or any similar tracking technologies.
|
|
</p>
|
|
|
|
<h2>What This Means</h2>
|
|
<ul>
|
|
<li>We don't set or read any cookies</li>
|
|
<li>We don't track your browsing behavior</li>
|
|
<li>We don't collect any personal information</li>
|
|
<li>We don't use analytics or advertising cookies</li>
|
|
<li>We don't use third-party tracking services</li>
|
|
</ul>
|
|
|
|
<h2>Browser Storage</h2>
|
|
<p>
|
|
While we don't use cookies, this documentation site may use browser features like:
|
|
</p>
|
|
<ul>
|
|
<li>
|
|
<strong>Local Storage</strong>: To remember your theme preference (light/dark mode)
|
|
</li>
|
|
<li>
|
|
<strong>Session Storage</strong>: To maintain navigation state during your visit
|
|
</li>
|
|
</ul>
|
|
<p>This data:</p>
|
|
<ul>
|
|
<li>Is stored only in your browser</li>
|
|
<li>Is never transmitted to any server</li>
|
|
<li>Can be cleared by clearing your browser data</li>
|
|
<li>Does not identify you personally</li>
|
|
</ul>
|
|
|
|
<h2>Third-Party Links</h2>
|
|
<p>
|
|
Our documentation may contain links to external websites that might use cookies. We are
|
|
not responsible for the cookie practices of external sites. Please review their cookie
|
|
policies when visiting them.
|
|
</p>
|
|
|
|
<h2>Your Privacy</h2>
|
|
<p>Since we don't use cookies:</p>
|
|
<ul>
|
|
<li>There's nothing to accept or decline</li>
|
|
<li>No tracking occurs</li>
|
|
<li>Your browsing is completely private</li>
|
|
<li>No consent banner is needed</li>
|
|
</ul>
|
|
|
|
<h2>Changes to This Policy</h2>
|
|
<p>
|
|
We may update this cookie policy for clarity. Any updates will be posted on this page
|
|
with a new “Last updated” date. However, we do not anticipate adding cookies
|
|
to this documentation site.
|
|
</p>
|
|
|
|
<h2>Contact</h2>
|
|
<p>
|
|
For questions about this policy or the LibreChat project, please visit{' '}
|
|
<Link href="https://github.com/danny-avila/LibreChat">our GitHub repository</Link>.
|
|
</p>
|
|
|
|
<hr />
|
|
|
|
<p className="text-sm text-muted-foreground">
|
|
By using this documentation site, you acknowledge that no cookies or tracking
|
|
technologies are employed.
|
|
</p>
|
|
</article>
|
|
</main>
|
|
<div className="border-t border-border px-4 py-16 sm:px-6 lg:px-8">
|
|
<div className="mx-auto max-w-6xl">
|
|
<FooterMenu />
|
|
</div>
|
|
</div>
|
|
</HomeLayout>
|
|
)
|
|
}
|