this guide will help you configure and use the resume builder to create your resume page.
Ensure that your resume is formatted according to the JSON Resume standard. This is crucial for the resume builder to interpret and render your resume correctly.
If you don't want to take the time to manually format your resume content and set up hosting, try using this: Resume to JSON
You have two options to provide your resume data:
resumeJsonUrl: 'https://example.com/resume.json'
resumeJson: {
"basics": { "name": "John Doe" },
"work": [ ... ]
}
Select a theme for your resume. You can use the predefined themes or create your own:
Predefined Themes:
starterThemeoceanThemeCustom Theme:
starterTheme or create a new one and import it.If you want to add additional styles, provide a URL to a custom stylesheet:
customStyleUrl: 'https://example.com/styles.css'
Customize the order of the sections in your resume:
sectionOrder: ['header', 'summary', 'education', 'work', 'projects', 'volunteer', 'awards', 'certificates', 'publications', 'skills', 'languages', 'interests', 'references']
sectionOrder: ['header', 'summary', 'projects', 'education', 'work']
Override any default sections with custom sections:
customSections: {
header: customHeader
}
Control the visibility of the "Save asPDF" button:
savePDFIsVisible: true