First, install using either of the two commands (yarn preferred instead of npm but either should work).
npm i
# or
yarnNow you can run the development server:
npm run dev
# or
yarn devOpen http://localhost:3000 with your browser to see the result.
You can add link entries to your site by adding an entry to config.json's links list.
{
...
"links": [
...
},
{
"name": "My New Link",
"link": "https://my-cool-site.com",
"icon": "fa-brands fa-linkedin"
}
]
}Icons can be found on FontAwesome's website (Font Awesome v6 is used).
The style of the whole site can be changed in the style.css file.