Categorize website so it's easier to find, like Gaming, Developer Tools, Social Media, Entertainment, etc
I guess it'll need a lot of work since the list of websites are spread into multiple variables.
|
export const devStarterPack = [ |
|
export const idnStarterPack = [ |
I suggest combining all websites then add "categories" array in it
export const websites = [
{ website: 'line.me', icon: siLine, categories: ['social', 'idnStarterPack'] },
{ website: 'github.com', icon: siGithub, categories: ['develop','devStarterPack','productivity']},
{ website: 'paypal.com', icon: siPaypal, categories: ['finance','remoteWork'] },
{ website: 'upwork.com', icon: siUpwork, categories: ['remoteWork','productivity'] },
]
If implemented, this can also close PR #25