Skip to content

Developer-Student-Club-UoA/links-workshop

 
 

Repository files navigation

Getting Started

First, install using either of the two commands (yarn preferred instead of npm but either should work).

npm i
# or
yarn

Now you can run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

Adding Links

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).

Changing the style

The style of the whole site can be changed in the style.css file.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 42.6%
  • CSS 42.0%
  • JavaScript 15.4%