rohitdasu / projectmate

Supercharge your open-source contributions with projectmate.net; Discover open-source projects, connect with experienced maintainers, and collaborate with a community of passionate contributors. Join over 200+ registered users who are already making a difference
https://project-mate.vercel.app
MIT License
152 stars 111 forks source link

[CHORE] Remove unnecessary icons import #405

Closed JakubChorzepa closed 1 year ago

JakubChorzepa commented 1 year ago

Description

In footer and sidebar components there are unnecessary imports of icons like this: import * as SiIcon from 'react-icons/si';

We'd like to remove those imports and replace them with only icons that are used in these components.

pewpewnor commented 1 year ago

Hi there, guys! @JakubChorzepa, after playing around with the frontend code, I managed to fix the import. Now, it should be: import { SiDiscord, SiGithub, SiTwitter } from 'react-icons/si';

I've come up with one possible solution that works. I will leave a PR so you guys can review it through the pull request. Let me know if there is a better solution / modifications I can do.

pewpewnor commented 1 year ago

For now I'll only do the footer so you guys can check it first.