- Add 4 new CV templates (ATS-Friendly, Classic, Modern, Minimal) with thumbnails - Implement template registry and gallery component for template selection - Add photoUrl field to personal info with URL validation - Update buildPrintableHtml to support template-specific styling - Modify ExportControls to use template registry - Add template preview thumbnails in SVG format
2 lines
136 B
TypeScript
2 lines
136 B
TypeScript
export type CV = import('../cv-engine/src/schema/cvSchema').CV;
|
|
export function buildPrintableHtml(cv: CV, templateId?: string): string; |