feat(ui): add cv application frontend and configuration

This commit is contained in:
Tuan-Dat Tran
2026-02-23 13:47:08 +01:00
parent cbf40908a6
commit 7f06ee7f53
43 changed files with 2849 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import EducationForm from './sections/EducationForm';
import ExportButton from './components/ExportButton';
import { useCVData } from './hooks/CVContext';
export default function AdminEducation() {
const { data, updateEducation, exportJSON, importJSON, resetToDefault } = useCVData();
return (
<div className="space-y-6">
<ExportButton onExport={exportJSON} onImport={importJSON} onReset={resetToDefault} />
<EducationForm data={data.education} onUpdate={updateEducation} />
</div>
);
}