'use client' import { SettingsNav, SettingsSection } from '@/components/settings' import { Card, CardContent } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' export default function AboutSettingsPage() { const version = '1.0.0' const buildDate = '2026-01-17' return (
{/* Sidebar Navigation */} {/* Main Content */}

About

Information about the application

📝} description="A powerful note-taking application with AI-powered features" >
Version {version}
Build Date {buildDate}
Platform Web
✨} description="AI-powered capabilities" >
AI-powered title suggestions
Semantic search with embeddings
Paragraph reformulation
Memory Echo daily insights
Notebook organization
Drag & drop note management
Label system
Multiple AI providers (OpenAI, Ollama)
⚙️} description="Built with modern technologies" >
Frontend: Next.js 16, React 19, TypeScript
Backend: Next.js API Routes, Server Actions
Database: SQLite (Prisma ORM)
Authentication: NextAuth 5
AI: Vercel AI SDK, OpenAI, Ollama
UI: Radix UI, Tailwind CSS, Lucide Icons
Testing: Playwright (E2E)
💬} description="Get help and feedback" >

Documentation

Check the documentation for detailed guides and tutorials.

Report Issues

Found a bug? Report it in the issue tracker.

Feedback

We value your feedback! Share your thoughts and suggestions.

) }