'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.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.