'use client' import { SettingsSection } from '@/components/settings' import { Card, CardContent } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' import { useLanguage } from '@/lib/i18n' export default function AboutSettingsPage() { const { t } = useLanguage() const version = '1.0.0' const buildDate = '2026-01-17' return (

{t('about.title')}

{t('about.description')}

📝} description={t('about.appDescription')} >
{t('about.version')} {version}
{t('about.buildDate')} {buildDate}
{t('about.platform')} {t('about.platformWeb')}
✨} description={t('about.features.description')} >
{t('about.features.titleSuggestions')}
{t('about.features.semanticSearch')}
{t('about.features.paragraphReformulation')}
{t('about.features.memoryEcho')}
{t('about.features.notebookOrganization')}
{t('about.features.dragDrop')}
{t('about.features.labelSystem')}
{t('about.features.multipleProviders')}
⚙️} description={t('about.technology.description')} >
{t('about.technology.frontend')}: Next.js 16, React 19, TypeScript
{t('about.technology.backend')}: Next.js API Routes, Server Actions
{t('about.technology.database')}: SQLite (Prisma ORM)
{t('about.technology.authentication')}: NextAuth 5
{t('about.technology.ai')}: Vercel AI SDK, OpenAI, Ollama
{t('about.technology.ui')}: Radix UI, Tailwind CSS, Lucide Icons
{t('about.technology.testing')}: Playwright (E2E)
💬} description={t('about.support.description')} >

{t('about.support.documentation')}

Check the documentation for detailed guides and tutorials.

{t('about.support.reportIssues')}

Found a bug? Report it in the issue tracker.

{t('about.support.feedback')}

We value your feedback! Share your thoughts and suggestions.

) }