A simple template to build a simple, clean yet individualistic resume!
git clone https://github.com/lXXXw/simple-resume.git
cd simple-resume/resume
npm install
npm run dev
Navigate in your browser to http://localhost:3000/ to check the example!
Click the button to download the PDF version (Firefox recommended for best copy-paste experience)
- Copy
resume/src/content/example.js
and save it asresume/src/content/<your_name>.js
and modify the json object to meet your needs! - Open
resume/src/components/main/main.js
and change thisimport { content } from "../../content/example";
toimport { content } from "../../content/<your_name>";
resume/tailwind.config.js
colors: {
"accent-color": "#c93120", // change to what you like!
},
fontFamily: {
sans: ["Arial"],
},
fontSize: {
xs: "0.68rem",
sm: "0.73rem",
base: "0.90rem",
xl: "1.25rem",
"2xl": "1.563rem",
"3xl": "1.953rem",
"4xl": "2.441rem",
"5xl": "3.052rem",
},
More configs coming soon!