A React CV template with a customizable color scheme and a layout.
Can generate .pdf file.
This project was bootstrapped with Create React App and @stylable/react-scripts.
npm install
npm start
npm run pdf- Clone git repository:
git clone https://github.com/JustCaptcha/create-react-cv.git - Install all dependencies:
npm intall - Run the local development server:
npm start - Input your own data in the
./src/person.tsxfile. - In a separate tab run command:
npm run pdf - Grab your generated pdf file from folder
./pdf
put your colors into css variables
./src/project.st.css
:vars {
color-primary: #5E81AC;
color-secondary: #BF616A;
color-text: #4C566A;
color-link: #B48EAD;
}./src/app.tsx
const theme = createMuiTheme({
typography: {
htmlFontSize: 10,
},
palette: {
primary: {
main: '#5E81AC',
},
secondary: {
main: '#BF616A',
}
}
})rearrange components or comment components that doesn't need.
.src/Pages/Main.tsx
