🎭 What is Synapse ?
- UX design, or user experience design, is the process of designing products (such as websites, software, and other digital products) with the goal of improving the user experience. It involves understanding the needs and goals of the users and creating products that are easy to use, efficient, and enjoyable to interact with.
- UI design, or user interface design, refers to the design of user interfaces for software and computerized devices. It involves creating visual elements such as icons, buttons, and layout that users interact with to perform tasks on a computer or other device. The goal of UI design is to make the user's interaction with the device or software as simple and efficient as possible.
- When UI and UX design work together, the result is a product that is visually appealing and easy to use, with a cohesive and consistent look and feel. The designers may collaborate to create wireframes and prototypes that combine both visual and functional elements, and they may also conduct user testing to gather feedback and make improvements to the product.
https://synapse1-0.vercel.app/
- You have to make a readme file and attach the ticket in your contributed folder.
- Folder Name = Project Name.
- You get some awesome goodies for FREE!.
- participation certificates for all participants.
To add your contributions towards opensource community and grab the oppurtunity:smiley: :smiley::smiley:
Then lets start with this repository.
✅ Pull requests can be submitted to given repository on GitHub.
✅ The pull request must contain commits you made yourself.
✅ If a maintainer reports your pull request as 'spam' or 'invalid', it will not be counted toward your participation in Synapse.
✅ If a maintainer reports behaviour that’s not in line with the project’s code of conduct, you will be ineligible to participate.
✅ TOP performers will get free goodies for their approved pull requests (PRs) on given repos between January 1-31.
❌ PRs that are automated (e.g. scripted opening PRs to remove whitespace/optimize images)
❌ PRs that are disruptive (e.g. taking someone else’s branch/commits and making a PR)
❌ PRs that are regarded by a project maintainer as a hindrance vs. helping
❌ Something that’s clearly an attempt to simply +1 your PR count for January
$ git clone https://github.com/your_username/make-pull-request
$ cd <cloned-folder>
$ git remote add upstream https://github.com/SC-ECE/UI-UX-DESIGN.git
It will help you to keep your forked repo updated with the original repo
$ git checkout main
$ git fetch upstream
$ git merge upstream/main
$ git push origin main
$ git checkout -b <feature-branch>
🔺 After making changes or modification on to your code locally, you need to add these files to the staging area.
$ git add --all
$ git commit -m "<your-message>"
$ git push origin <your-created-branch-name>