Back to articles
I built a free dark portfolio template you can set up in 5 minutes [no React, no npm, no headache]

I built a free dark portfolio template you can set up in 5 minutes [no React, no npm, no headache]

via Dev.to WebdevPatience Philip

Most free portfolio templates have the same problem. You download them excited, open the folder, and then spend the next 45 minutes ctrl+F-ing through 400 lines of HTML trying to find where your name is supposed to go. You change one thing and break three others. You give up and use a website builder instead. I've been there. So I built something different. The idea: edit one file, never touch the HTML The template has two files: index.html and config.js . You open config.js . You fill in your details. You're done. const PORTFOLIO = { name : " Your Name " , role : " designer & developer " , location : " Lagos, Nigeria " , available : true , email : " hello@yourname.com " , bio : [ " First paragraph about yourself. " , " Second paragraph — optional. " ], projects : [ { title : " \" Your Project \" , " desc : " What it does and why it matters. " , tags : [ " React " , " Design " ], url : " https://yourproject.com " , featured : true , }, ], theme : { accent : " #c8a96e " , // change this

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
8 views

Related Articles