···3636which is a frontend-agnostic application development framework that uses Rust.
37373838For the frontend portion, I went with [React](https://react.dev/) as the UI framework
3939-and [Pico CSS](https://picocss.com/) for styling.
3939+and [Material UI](https://mui.com/) for styling. Although I started out with Pico CSS, I found that the styles and overall customization of the framework were limited, so I switched to MUI.
40404141It was based on the [old mod manager](https://github.com/ow-mods/ow-mod-manager)
4242and tried to improve functionality and Linux support.
43434444-Development took a little bit over 4 months, I made a
4444+Development took a little bit over 5 months, I made a
4545[core package](https://github.com/Bwc9876/ow-mod-man/tree/main/owmods_core)
4646so anyone can interface with mods, a
4747[CLI](https://github.com/Bwc9876/ow-mod-man/tree/main/owmods_cli) for
···4949and a [GUI](https://github.com/Bwc9876/ow-mod-man/tree/main/owmods_gui) for
5050user-friendliness.
51515252-It was my first time distributing a full app to multiple sources and testing
5353-compatibility across multiple platforms. Getting Steam Deck support via [Flathub](https://flathub.org/apps/com.outerwildsmods.owmods_gui)
5252+It was my first time distributing a complete app to multiple sources and testing
5353+compatibility across various platforms. Getting Steam Deck support via [Flathub](https://flathub.org/apps/com.outerwildsmods.owmods_gui)
5454was especially challenging.
5555-5656-In hindsight, I think that Pico CSS wasn't a great fit for this project as it's
5757-more oriented towards simple static sites.
5858-Something like Material UI might have worked better.