A vscode inspired portfolio project
Explore the docs »
View Demo
·
Markdown prview
·
Report Bug
This website portfolio showcasing my work is based on noworneverev’s project, which can be found at github.com/noworneverev/react-vscode-portfolio, and is not an original creation of mine.
The project is inspired by Visual Studio Code and caglarturali.github.io. The pages of the portfolio are powered by markdown, which make them easy to modify or add your own contents.
git clone https://github.com/noworneverev/react-vscode-portfolio.git
npm install
.env.development
REACT_APP_NAME=<your_name>
public/pagessrc/app/pages/page.ts, make sure the names of pages are consistent with markdown files.
export const pages = [
{ index: 0, name: 'overview.md', route: '/overview' },
{ index: 1, name: 'skills.md', route: '/skills' },
{ index: 2, name: 'experience.md', route: '/experience' },
{ index: 3, name: 'education.md', route: '/education' },
{ index: 4, name: 'projects.md', route: '/projects' },
{ index: 5, name: 'certificates.md', route: '/certificates' },
{ index: 6, name: 'accomplishments.md', route: '/accomplishments' },
];
src/app/pages/link.tsx, which will appear in both sidebar and homepage.
export const links = [
{
index: 0,
title: "Find me on Github",
href: "https://github.com/noworneverev",
icon: <FaGithub />,
},
];
npm start
package.json
"homepage": "https://{username}.github.io/{repo-name}"
* For a project site, that’s the format. For a user site, the format is:
https://{username}.github.io. You can read more about thehomepageproperty in the “GitHub Pages” section of thecreate-react-appdocumentation.
.env.production
REACT_APP_NAME=<your_name>
REACT_APP_MEASUREMENT_ID=<your_measurement_id>
docker-compose up
Markdown preview: https://noworneverev.github.io/#/docs
Distributed under the MIT License. See LICENSE.md for more information.
Yan-Ying Liao - Personal Portfolio - n9102125@gmail.com
Project Link: https://github.com/noworneverev/react-vscode-portfolio