feat: add Import & Export page and update Help page with new navigation

This commit is contained in:
shuaiplus
2026-03-02 00:02:19 +08:00
committed by Shuai
parent dc12a73ab3
commit 5dab96f40e
4 changed files with 37 additions and 4 deletions
@@ -0,0 +1,19 @@
import { ArrowUpDown } from 'lucide-preact';
import { t } from '@/lib/i18n';
export default function ImportExportPage() {
return (
<div className="stack">
<section className="card">
<h3>{t('import_export_title')}</h3>
<div className="empty" style={{ minHeight: 180 }}>
<div style={{ textAlign: 'center' }}>
<ArrowUpDown size={34} style={{ color: '#64748b', marginBottom: 8 }} />
<div>{t('import_export_under_construction')}</div>
</div>
</div>
</section>
</div>
);
}