This is a work in progress 🛠️
A website showcasing data from a Mithril Aggregator made using Next.js.
Install node.js && (yarn)[https://yarnpkg.com/getting-started/install].
First, build the mithril-client-wasm package:
make -C ../mithril-client-wasm buildThen, run the development server:
make devOpen http://localhost:3000 with your browser to see the result.
In the ./icons folder add or modify a svg.
If you add a new icon you need to reference and associate it with a codepoint in the ./fantasticonrc.js
configuration file.
The codepoint must be part of the unicode private use area, as
such it must be an integer between 57344 and 63743 (hex: E000-F8FF).
Then rebuild the font:
make icons-fontYou can then use the icon in the js, ie if your icon name is shield:
<i className={`bi mi mi-shield`}></i>