├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.md │ └── question.md └── config.yml ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── GUIDELINES.md ├── LICENSE ├── README.md ├── assets └── images │ ├── licence.png │ └── readme.md ├── package-lock.json ├── package.json └── web ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── hive.svg ├── src ├── App.jsx ├── assets │ ├── hero_picture.png │ ├── hive.svg │ ├── img-placeholder.jpg │ ├── img-placeholder2.jpg │ ├── img-placeholder3.png │ └── search.png ├── components │ ├── Fab │ │ └── Fab.jsx │ ├── HeroImage.jsx │ ├── Input │ │ └── Input.jsx │ └── ScrollTop.jsx ├── hooks │ └── useInterectionObserver.jsx ├── index.css ├── layouts │ ├── Footer.jsx │ ├── Header.jsx │ ├── Hero.jsx │ ├── MasterLayout.jsx │ └── index.js ├── main.jsx └── pages │ ├── Contributors │ ├── ContributorItem.jsx │ ├── Contributors.jsx │ ├── ContributorsList.jsx │ └── search │ │ └── Search.jsx │ ├── Docs │ ├── CodeBlock.jsx │ └── Guide.jsx │ ├── Home │ └── Home.jsx │ ├── Issues │ ├── IssuesPage │ │ ├── IssueItem.jsx │ │ └── IssueList.jsx │ ├── LanguageDropDown.jsx │ ├── ListOfOrgs │ │ ├── ProjectCard.jsx │ │ └── listOfOrgs.js │ └── ProjectList.jsx │ ├── NotFound │ └── NotFound.jsx │ └── index.js ├── tailwind.config.js ├── vercel.json ├── vite.config.js └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | 2 | name: Bug report 3 | description: Create a bug report to help us address errors in the repository 4 | title: "[BUG] " 5 | labels: [bug] 6 | body: 7 | - type: textarea 8 | id: bugdescription 9 | attributes: 10 | label: Description of the bug 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: screenshots 15 | attributes: 16 | label: Please add screenshots (if applicable) 17 | validations: 18 | required: false 19 | - type: textarea 20 | id: context 21 | attributes: 22 | label: Add any other context about the problem here 23 | validations: 24 | required: false 25 | - type: checkboxes 26 | id: terms 27 | attributes: 28 | label: Checklist 29 | description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/ArslanYM/StarterHive/blob/main/CODE_OF_CONDUCT.md) 30 | options: 31 | - label: "I have read the [Contributing Guidelines](https://github.com/ArslanYM/StarterHive/blob/main/CONTRIBUTING.md)" 32 | required: true 33 | - label: "I have checked the existing [issues](https://github.com/ArslanYM/StarterHive/issues)" 34 | required: true 35 | - label: "I am willing to work on this issue (optional)" 36 | required: false 37 | 38 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: "⭐FEAT:" 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Question/Doubt 3 | about: Have a doubt related to the project 4 | title: "💁🏼HELP:" 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your doubt related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- 1 | # Configuration for welcome - https://github.com/behaviorbot/welcome 2 | 3 | # Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome 4 | 5 | # Comment to be posted to on first time issues 6 | newIssueWelcomeComment: > 7 | 💖Thanks for opening your first issue here! Be sure to star ⭐ the repo !💖 8 | 9 | # Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome 10 | 11 | # Comment to be posted to on PRs from first time contributors in your repository 12 | newPRWelcomeComment: > 13 | 💖Thanks for opening this pull request! Please check out our contributing guidelines.💖 14 | 15 | # Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge 16 | 17 | # Comment to be posted to on pull requests merged by a first time user 18 | firstPRMergeComment: > 19 | Congrats on merging your first pull request! We here at StarterHive are proud of you!🎉🎉🎉 20 | ![alt text](https://media.tenor.com/u97JCT-bu8sAAAAC/proud-cool.gif) 21 | 22 | # It is recommended to include as many gifs and emojis as possible! 23 | 24 | # Configuration for sentiment-bot - https://github.com/behaviorbot/sentiment-bot 25 | 26 | # *Required* toxicity threshold between 0 and .99 with the higher numbers being the most toxic 27 | # Anything higher than this threshold will be marked as toxic and commented on 28 | sentimentBotToxicityThreshold: .7 29 | 30 | # *Required* Comment to reply with 31 | sentimentBotReplyComment: > 32 | Please be sure to review the code of conduct and be respectful of other users. 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional stylelint cache 58 | .stylelintcache 59 | 60 | # Microbundle cache 61 | .rpt2_cache/ 62 | .rts2_cache_cjs/ 63 | .rts2_cache_es/ 64 | .rts2_cache_umd/ 65 | 66 | # Optional REPL history 67 | .node_repl_history 68 | 69 | # Output of 'npm pack' 70 | *.tgz 71 | 72 | # Yarn Integrity file 73 | .yarn-integrity 74 | 75 | # dotenv environment variable files 76 | .env 77 | .env.development.local 78 | .env.test.local 79 | .env.production.local 80 | .env.local 81 | 82 | # parcel-bundler cache (https://parceljs.org/) 83 | .cache 84 | .parcel-cache 85 | 86 | # Next.js build output 87 | .next 88 | out 89 | 90 | # Nuxt.js build / generate output 91 | .nuxt 92 | dist 93 | 94 | # Gatsby files 95 | .cache/ 96 | # Comment in the public line in if your project uses Gatsby and not Next.js 97 | # https://nextjs.org/blog/next-9-1#public-directory-support 98 | # public 99 | 100 | # vuepress build output 101 | .vuepress/dist 102 | 103 | # vuepress v2.x temp and cache directory 104 | .temp 105 | .cache 106 | 107 | # Docusaurus cache and generated files 108 | .docusaurus 109 | 110 | # Serverless directories 111 | .serverless/ 112 | 113 | # FuseBox cache 114 | .fusebox/ 115 | 116 | # DynamoDB Local files 117 | .dynamodb/ 118 | 119 | # TernJS port file 120 | .tern-port 121 | 122 | # Stores VSCode versions used for testing VSCode extensions 123 | .vscode-test 124 | 125 | # yarn v2 126 | .yarn/cache 127 | .yarn/unplugged 128 | .yarn/build-state.yml 129 | .yarn/install-state.gz 130 | .pnp.* 131 | 132 | # Editor settings 133 | .vscode/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "es5", 4 | "tabWidth": 2, 5 | "semi": true 6 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, caste, color, religion, or sexual 10 | identity and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the overall 26 | community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or advances of 31 | any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email address, 35 | without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | 1irststeps@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series of 86 | actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or permanent 93 | ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within the 113 | community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.1, available at 119 | [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. 120 | 121 | Community Impact Guidelines were inspired by 122 | [Mozilla's code of conduct enforcement ladder][Mozilla CoC]. 123 | 124 | For answers to common questions about this code of conduct, see the FAQ at 125 | [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at 126 | [https://www.contributor-covenant.org/translations][translations]. 127 | 128 | [homepage]: https://www.contributor-covenant.org 129 | [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html 130 | [Mozilla CoC]: https://github.com/mozilla/diversity 131 | [FAQ]: https://www.contributor-covenant.org/faq 132 | [translations]: https://www.contributor-covenant.org/translations 133 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | We love pull requests from everyone. By participating in this project, you 4 | agree to abide by the [Code Of Conduct](https://github.com/ArslanYM/StarterHive/blob/main/CODE_OF_CONDUCT.md). 5 | 6 | ## Steps 7 | 8 | 1. [Fork](https://help.github.com/articles/fork-a-repo/) this project 9 | 2. [Clone](https://help.github.com/articles/fork-a-repo/#step-2-create-a-local-clone-of-your-fork) your forked version `git clone git@github.com:/StarterHive.git` 10 | 3. Make changes 11 | 4. Create a [branch](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches#working-with-branches) 12 | 5. [Commit](https://help.github.com/articles/adding-a-file-to-a-repository-using-the-command-line/) your changes (write a short descriptive message of what you have done) 13 | 6. [Push](https://help.github.com/articles/pushing-to-a-remote/) your changes to your forked version 14 | 7. Go to the original project on GitHub & Create a [Pull Request](https://help.github.com/articles/about-pull-requests/) 15 | 16 | ## DONE 🥳 17 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | # Contributors 2 | 3 | ## StarterHive Practice Contribution 4 | 5 | Repository for you to raise a Pull Request to **practice** open-source! 🎉 6 | 7 | ### Add your name to the alphabetical list and, optionally, a link to your GitHub account (in alphabetical order below your letter too) 8 | 9 | ### Option 1. Complete this process in GitHub (in your browser) 10 | 11 | ```mermaid 12 | flowchart LR 13 | Fork[Fork the project]-->branch[Create a New Branch] 14 | branch-->Edit[Edit file] 15 | Edit-->commit[Commit the changes] 16 | commit -->|Finally|creatpr((Create a Pull Request)) 17 | ``` 18 | 19 | **1. Fork the project:** 20 | 21 | - Click the gray Fork button at the top right of this page. This creates your copy of the project and saves it as a new repository in your GitHub account. 22 | 23 | **2. Create a New Branch:** 24 | 25 | - On your new repository's page, click the gray main button in the upper left to reveal a dropdown menu. 26 | - Enter the name of your new branch in the text box. (Branch names usually refer to what is being changed. Example: nameAdd). 27 | -Click on Create branch , which will automatically take you to your new branch. You can make edits on the main branch, but this may cause issues down the line. The best practice is to create a new branch for each separate issue you work on. That way your main branch remains in sync with Eddie's main branch. 28 | 29 | **3. Edit:** 30 | 31 | - On the top right of the Readme file, click on the pencil icon to edit the file by adding your name. 32 | - After editing the Readme file, add a commit message and click on the green button saying "Commit Changes". Make sure you have selected the branch you have created. 33 | 34 | **4. Raise a Pull Request:** 35 | 36 | - Click `Pull Requests` (which is the third option at the top of this page after the options `Code` and `Issues`). 37 | - Click the green New Pull Request button. This will prep the new pull request for you by auto-filling the base repository: base with 'StarterHive: main' AND auto-filling your head repository: compare with your repository: main 38 | - Click on your head repository's `compare` dropdown, and switch branches from your 'main' branch to ``. 39 | - Finally, click the green `Create Pull Request` button. Great job! You did it! 40 | 41 | You can ask questions by raising an [issue](https://github.com/ArslanYM/StarterHive/issues/new). 42 | 43 | ### Option 2. Complete this process on your computer (locally) 44 | 45 | 46 | 1. Fork the project: 47 | 48 | - Click the gray Fork button at the top right of this page. This creates your copy of the project and saves it as a new repository in your GitHub account 49 | 50 | 2. Clone this project on your computer: 51 | 52 | - Go to your profile. You will find forked repo named **_StarterHive_**. go to the repo by clicking on it. 53 | - Click on the green Code button, then either the HTTPS or SSH option, and, click the icon to copy the URL. Now you have a copy of the project. Thus, you can play around with it locally on your computer. 54 | 55 | 56 | - Run the following commands into a terminal window (Command Prompt, Powershell, Terminal, Bash, ZSH). Do this to download the forked copy of this repository to your computer. 57 | 58 | ```bash 59 | git clone https://github.com/YOUR_GITHUB_USERNAME/StarterHive.git 60 | ``` 61 | 62 | - Switch to the cloned folder. You can paste this command into the same terminal window. 63 | 64 | ```bash 65 | cd StarterHive 66 | ``` 67 | 68 | 3. Create a new branch: 69 | 70 | - Your username would make a good branch because it's unique. 71 | 72 | ```bash 73 | git checkout -b 74 | ``` 75 | 76 | 4. Edit: 77 | 78 | - Open the `CONTRIBUTORS.md` file 79 | 80 | - **Add your name to the section that matches your Initial in [this list](https://github.com/ArslanYM/StarterHive#StarterHive-community), make sure that your name is in alphabetical order. Then save your changes.** 81 | 82 | - For example 83 | `- [Full Name](https://github.com/your-username)` 84 | 85 | 5. Stage your changes: 86 | 87 | ```bash 88 | git add README.md 89 | ``` 90 | 91 | or 92 | 93 | ```bash 94 | git add . 95 | ``` 96 | 97 | 6. Commit the changes: 98 | 99 | ```bash 100 | git commit -m "Add " 101 | ``` 102 | 103 | - Check the status of your repository. 104 | 105 | ```bash 106 | git status 107 | ``` 108 | 109 | - The response should be like this: 110 | 111 | ```bash 112 | On branch 113 | nothing to commit, working tree clean 114 | ``` 115 | 116 | 7. Pushing your repository to GitHub: 117 | 118 | ```bash 119 | git push origin 120 | ``` 121 | 122 | or 123 | 124 | ```bash 125 | git branch -M main 126 | git push -u origin main 127 | ``` 128 | 129 | > **Warning**: If you get an error message like the one below, you probably forgot to fork the repository before cloning it. It is best to start over and fork the project repository first. 130 | 131 | ```bash 132 | ERROR: Permission to ArslanYM/StarterHive.git denied to . 133 | fatal: Could not read from remote repository. 134 | Please make sure you have the correct access rights and that the repository exists. 135 | ``` 136 | 137 | 8. Raise a Pull Request: 138 | 139 | - On the GitHub website, navigate to your forked repo - on the top of the files section, you'll notice a new section containing a `Compare & Pull Request` button! 140 | 141 | - Click on that button, this will load a new page, comparing the local branch in your forked repository against the main branch in the StarterHive repository. Do not make any changes in the selected values of the branches (do so only if needed), and click the green `Create Pull Request` button. After creating the PR (Pull Request), our GitHub Actions workflow will add a welcome message to your PR. 142 | Note: A pull request allows us to merge your changes with the original project repo. 143 | 144 | - Your pull request will be reviewed and then eventually merged. 145 | 146 | Hurray! You successfully made your first contribution! 🎉 147 | 148 | --- 149 | 150 | ## How can I fix a merge conflict? 151 | 152 | A GitHub conflict is when people make changes to the same area or line in a file. This must be fixed before it is merged to prevent collision in the main branch. 153 | 154 | - **To read more about this, go to [GitHub Docs - About Merge Conflicts](https://docs.github.com/en/github/collaborating-with-pull-requests/addressing-merge-conflicts/about-merge-conflicts)** 155 | 156 | - **To find out about how to fix a Git Conflict, go to [GitHub Docs - Resolve Merge Conflict](https://docs.github.com/en/github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github)** 157 | 158 | - You can also ask for help in our [Discord server](https://discord.gg/DeFe5Sxt). 159 | 160 | --- 161 | 162 | ## `StarterHive Community` 163 | 164 | ### **Contents** 165 | 166 | | [A](#a) | [B](#b) | [C](#c) | [D](#d) | [E](#e) | [F](#f) | [G](#g) | [H](#h) | [I](#i) | [J](#j) | [K](#k) | [L](#l) | [M](#m) | [N](#n) | [O](#o) 167 | | [P](#p) | [Q](#q) | [R](#r) | [S](#s) | [T](#t) | [U](#u) | [V](#v) | [W](#w) | [X](#x) | [Y](#y) | [Z](#z) | 168 | 169 | - ### **A** 170 | 171 | - [Alimurtuza Patrawala](https://github.com/CYBWEBALI) 172 | - [Arslan Malik](https://github.com/ArslanYM) 173 | - [Ashwanthram K L](https://github.com/AshwanthramKL) 174 | - [Anurag Roy](https://github.com/NextThread) 175 | - [Aman Raj Rana](https://github.com/amanrajrana) 176 | 177 | | [`Back To Top`](#contents) | 178 | 179 | 180 | - ### **B** 181 | - [Byomkesh Mahato](https://github.com/byomkesh03) 182 | - [Benedict Kpaduwa](https://github.com/Benedict-Kpaduwa) 183 | - [Barkha Gupta](https://github.com/barkha-gupta) 184 | 185 | | [`Back To Top`](#contents) | 186 | - ### **C** 187 | | [`Back To Top`](#contents) | 188 | - ### **D** 189 | | [`Back To Top`](#contents) | 190 | - ### **E** 191 | | [`Back To Top`](#contents) | 192 | - ### **F** 193 | | [`Back To Top`](#contents) | 194 | - ### **G** 195 | | [`Back To Top`](#contents) | 196 | - ### **H** 197 | | [`Back To Top`](#contents) | 198 | - ### **I** 199 | | [`Back To Top`](#contents) | 200 | - ### **J** 201 | - [Juan Pitencel](https://github.com/JuanPitencel) 202 | - [Jaisal Srivastava](https://github.com/Jais99) 203 | - [Jaimin Chovatia](https://github.com/Jaimin25) 204 | 205 | | [`Back To Top`](#contents) | 206 | - ### **K** 207 | | [`Back To Top`](#contents) | 208 | - ### **L** 209 | 210 | - [Lokesh Kadem](https://github.com/lokeshkadem) 211 | 212 | | [`Back To Top`](#contents) | 213 | - ### **M** 214 | - [Marcelo Feil](https://github.com/marcelorafaelfeil) 215 | - [Marcos Agüero](https://github.com/AgMarcos5) 216 | - [Mayur Gosavi](https://github.com/imaxmayur) 217 | - [Mriganka](https://github.com/turtlebeasts) 218 | 219 | | [`Back To Top`](#contents) | 220 | - ### **N** 221 | - [Nura Mohamed](https://github.com/Nura-mohamed) 222 | 223 | | [`Back To Top`](#contents) | 224 | - ### **O** 225 | | [`Back To Top`](#contents) | 226 | - ### **P** 227 | - [Poorvi J Nayak](https://github.com/poorvijn) 228 | 229 | | [`Back To Top`](#contents) | 230 | - ### **Q** 231 | | [`Back To Top`](#contents) | 232 | - ### **R** 233 | - [Ramya](https://github.com/ramya202000/StarterHive.git) 234 | 235 | | [`Back To Top`](#contents) | 236 | 237 | - ### **S** 238 | - [Shashank Dewangan](https://github.com/thejediboySHASHANK) 239 | - [Simardeep Singh](https://github.com/SimardeepSingh-zsh) 240 | - [Shobhit Gupta](https://github.com/shobhitexe) 241 | - [Samuel Kalu](https://github.com/eskayML) 242 | - [Stephen Cahillane](https://github.com/StephenCahillane) 243 | 244 | | [`Back To Top`](#contents) | 245 | - ### **T** 246 | 247 | - [Tanbir Ali](https://github.com/tanbirali) 248 | 249 | | [`Back To Top`](#contents) | 250 | - ### **U** 251 | | [`Back To Top`](#contents) | 252 | - ### **V** 253 | 254 | - [Vijay Pardhu](https://github.com/vijaynaidu16) 255 | - [Vyom Vartak](https://github.com/Vyom-V) 256 | 257 | | [`Back To Top`](#contents) | 258 | - ### **W** 259 | | [`Back To Top`](#contents) | 260 | - ### **X** 261 | | [`Back To Top`](#contents) | 262 | - ### **Y** 263 | - [Yash Samar](https://github.com/yashhhh04) 264 | 265 | | [`Back To Top`](#contents) | 266 | - ### **Z** 267 | | [`Back To Top`](#contents) | 268 | -------------------------------------------------------------------------------- /GUIDELINES.md: -------------------------------------------------------------------------------- 1 | # 🔑Guidelines 2 | 3 | 1. Welcome to this repository, if you are here as an open-source program participant/contributor. 4 | 2. Participants/contributors have to **comment** on issues they would like to work on, and mentors or the PA will assign you. 5 | 3. Issues will be assigned on a **first-come, first-serve basis.** 6 | 4. Participants/contributors can also **open their issues**, but it needs to be verified and labelled by the maintainer. We respect all your contributions, whether it is an Issue or a Pull Request. 7 | 6. When you raise an issue, make sure you get it assigned to you before you start working on that project. 8 | 7. Each participant/contributor will be **assigned 1 issue (max)** at a time to work. 9 | 8. Participants are expected to follow **project guidelines** and [**coding style**](https://github.com/airbnb/javascript/). **Structured code** is one of our top priorities. 10 | 9. Try to **explain your approach** to solve any issue in the comments. This will increase the chances of you being assigned. 11 | 10. Don't create issues that are **already listed**. 12 | 11. Please don't pick up an issue already assigned to someone else. Work on the issues after it gets **assigned to you**. 13 | 12. Make sure you **discuss issues** before working on the issue. 14 | 13. Pull requests will be merged after being **reviewed** by the maintainer. 15 | 14. It might take some time to review your pull request. Please have patience and be nice. 16 | 15. Always create a pull request from a **branch** other than `main`. 17 | 16. Participants/contributors have to complete issues before the decided Deadline. If you fail to make a PR within the deadline, then the issue will be assigned to 18 | another person in the queue. 19 | 17. While making PRs, don't forget to **add a description** of your work. 20 | 18. Include issue number (Fixes: issue number) in your commit message while creating a pull request. 21 | 19. Make sure your solution to any issue is better in terms of performance and other parameters in comparison to the previous work. 22 | 20. We all are here to learn. You are allowed to make mistakes. That's how you learn, right!. 23 | 24 | 25 | ### 🧲Pull Requests Review Criteria 26 | 27 | 1. Please fill all the details properly while making a Pull Request. 28 | 2. You must add your script into the respective **folders**. 29 | 3. Your work must be original, written by you not copied from other resources. 30 | 4. You must comment on your code or script where necessary. 31 | 5. Follow the proper [style guides](https://google.github.io/styleguide/) for your work. 32 | 6. For any queries or discussions, please feel free to drop a message. 33 | 34 | 35 | ## 📍Other points to remember while submitting your work: 36 | 37 | We want your work to be readable by others; therefore, we encourage you to note the following: 38 | 39 | - Folder names should not have spaces and if space is needed it should follow `snake_case`. 40 | - File names for Components should be same as the component name and should follow `PascalCase`. 41 | - Use seperate file for each individual React component. 42 | - File extension for Components should be `.jsx` and other javascript files `.js`. 43 | - Please avoid creating new directories if at all possible. Try to fit your work into the existing directories. 44 | - The [README.md] file should be concise and clear about what the script is about and what it does. 45 | - It should be documented briefly enough to let readers understand. 46 | - If you have modified/added code work, make sure that code works before submitting. 47 | - If you have modified/added documentation work, ensure your language is concise and contains no grammar errors. 48 | - Follow the project structure. 49 | 50 |
51 | 52 | 53 | 🤔Need more help? 54 | 55 | 56 | 57 | You can refer to the following articles on the basics of Git and Github and also contact me, in case you are stuck: 58 | - [Forking a Repo](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) 59 | - [Cloning a Repo](https://help.github.com/en/desktop/contributing-to-projects/creating-an-issue-or-pull-request) 60 | - [How to create a Pull Request](https://opensource.com/article/19/7/create-pull-request-github) 61 | - [Getting started with Git and GitHub](https://towardsdatascience.com/getting-started-with-git-and-github-6fcd0f2d4ac6) 62 | - [Learn GitHub from Scratch](https://lab.github.com/githubtraining/introduction-to-github) 63 | 64 |
65 | 66 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Arsalan Yaqoob Malik 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Starter Hive ✨

2 | 3 |

4 | License 5 |

6 | 7 |

8 | GitHub Header 9 |

10 | 11 |

🚀 Simplifying and Guiding First Contributions for Beginners 🚀

12 | 13 |

Welcome to Starter Hive! This project aims to make it easier for beginners to make their first contributions. Whether you're new to programming or looking to contribute to open-source projects, this repository provides the necessary resources and guidance.

14 | 15 | ## 💻 Tech Stack 16 | 17 | **Client:** [React](https://react.dev/) , [TailwindCSS](https://tailwindui.com/) 18 | 19 | **Server:** [Node](https://nodejs.org/en), [Express](https://expressjs.com/) 20 | 21 | ## 📖 Table of Contents 22 | 23 | - [Contributing](#contributing) 24 | - [Contributors](#contributors) 25 | - [Frontend Development](#frontend-development) 26 | - [Guidelines](#guidelines) 27 | - [License](#license) 28 | 29 | ## 🤝 Contributing 30 | 31 | Follow these steps to contribute to the project: 32 | 33 | - ### Step 1 34 | 35 | Fork this repository 36 |

37 | fork 38 |

39 | 40 | - ### Step 2: 41 | 42 | Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon. 43 | 44 |

45 | clone 46 |

47 | 48 | Open a terminal and run the following git command: 49 | 50 | ```bash 51 | git clone "url you just copied" 52 | ``` 53 | 54 | where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url. 55 | 56 |

57 | opy 58 |

59 | 60 | The code will look something like this : 61 | 62 | ```bash 63 | git clone https://github.com/{your user name}/StarterHive.git 64 | ``` 65 | 66 | - ### Step 3: 67 | 68 | Navigate to StarterHive on your device 69 | 70 | ```bash 71 | cd StaterHive/ 72 | ``` 73 | 74 | - ### Step 4: 75 | 76 | - Add an upstream link to the main branch in your cloned repo 77 | 78 | ```bash 79 | git remote add upstream https://github.com/ArslanYM/StarterHive 80 | ``` 81 | 82 | - Keep your cloned repo up to date by pulling from upstream (this will also avoid any merge conflicts while committing new changes) 83 | 84 | ```bash 85 | git pull upstream main 86 | ``` 87 | 88 | - ### Step 5: 89 | 90 | Create your feature branch (This is a necessary step, so don't skip it) 91 | 92 | ```bash 93 | git checkout -b 94 | ``` 95 | 96 | - ### Step 6: Make necessary changes and commit those changes 97 | 98 | Add your commits to the staging 99 | 100 | ``` 101 | git add . 102 | ``` 103 | 104 | - ### Step 7: Commit the changes 105 | 106 | - Now commit those changes using the `git commit` command: 107 | 108 | ```bash 109 | git commit -m "Write a meaningful but small commit message" 110 | ``` 111 | 112 | - Follow this [Guide](https://gist.github.com/tonibardina/9290fbc7d605b4f86919426e614fe692) for commit messages. 113 | 114 | - ### Step 8: Push your code. 115 | 116 | Push your changes using the command `git push` : 117 | 118 | ```bash 119 | git push -u origin your-branch-name 120 | ``` 121 | 122 | - ### Step 9: 123 | 124 | Create a PR on Github. (Don't just hit the create a pull request button, you must write a PR message to clarify why and what are you contributing) 125 | 126 |
127 | 128 | New to open-source? 129 | 130 | 131 | You can also contribute to this project if you are new to open source: 132 | 133 | - [Check out the `CONTRIBUTORS.md` file to get started](CONTRIBUTORS.md) 134 | 135 |
136 | 137 | ## 🧑‍💼 Project Admin 138 | 139 | 140 | 141 | 153 | 154 |
142 | 143 | Arsalan 144 |
145 | 146 | 147 | Arslan Malik 148 | 149 | 150 |
151 |
152 |
155 | 156 | ## 👥 Project Mentors 157 | 158 | 159 | 160 | 172 | 173 |
161 | 162 | Nadeem 163 |
164 | 165 | 166 | Nadeem 167 | 168 | 169 |
170 |
171 |
174 | 175 | ## ✨ Contributors 176 | 177 | Thank you for your dedication and hard work. Your contributions are invaluable to our team, and we are so grateful for all that you do. Your hard work and dedication are truly admirable. Thank you for your unwavering commitment and for all that you do for our team. 178 | 179 | Please visit [Contributors](/CONTRIBUTORS.md) to check the list of contributors and add your name to the list to become a contributor. 180 | 181 |

182 | 183 | Contributors 184 | 185 |

186 | 187 | ## 🎨 Frontend Development 188 | 189 | Calling all Frontend developers! We invite you to contribute to the `web/` directory of this project. The `web/` directory contains all the frontend code and assets. Whether you're experienced or just starting with frontend development, your contributions are highly appreciated. 190 | 191 | Feel free to explore the `web/` directory, make improvements, fix bugs, or add new features. Don't hesitate to share your ideas and suggestions to enhance the user experience. 192 | 193 | To contribute to the Frontend development: 194 | 195 | 1. Fork this repository. 196 | 2. Make your changes in the `web/` directory. 197 | 3. Submit a pull request explaining the changes you made and why they are valuable. 198 | 199 | Let's work together to create an amazing frontend experience for our users! 200 | 201 | ## 📝 Guidelines 202 | 203 | Please ensure that you adhere to the project's guidelines while making contributions. You can find detailed guidelines in the [Guidelines](GUIDELINES.md) document. 204 | 205 | ## 📄 License 206 | 207 | Starter Hive is licensed under the MIT License. For more information, please see the [LICENSE](https://github.com/ArslanYM/StarterHive/blob/main/LICENSE) file. 208 | 209 | --- 210 | 211 |

212 | Thank you for choosing Starter Hive! We hope this repository helps you in your journey as an open-source contributor. Let's create amazing things together! ✨ 213 |

214 | -------------------------------------------------------------------------------- /assets/images/licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArslanYM/StarterHive/14b72b03dbea25faedcf2e52205a8c9c3854f3b1/assets/images/licence.png -------------------------------------------------------------------------------- /assets/images/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "@types/react": "^18.2.18", 4 | "@types/react-dom": "^18.2.7", 5 | "@vitejs/plugin-react": "^4.0.4", 6 | "autoprefixer": "^10.4.14", 7 | "axios": "^1.4.0", 8 | "eslint": "^8.38.0", 9 | "eslint-plugin-react": "^7.32.2", 10 | "eslint-plugin-react-hooks": "^4.6.0", 11 | "eslint-plugin-react-refresh": "^0.3.4", 12 | "postcss": "^8.4.23", 13 | "prop-types": "^15.8.1", 14 | "react": "^18.2.0", 15 | "react-dom": "^18.2.0", 16 | "react-icons": "^4.8.0", 17 | "react-router-dom": "^6.11.2", 18 | "react-spinners": "^0.13.8", 19 | "react-syntax-highlighter": "^15.5.0", 20 | "tailwindcss": "^3.3.2", 21 | "vite": "^4.3.2" 22 | }, 23 | "devDependencies": { 24 | "husky": "^8.0.3", 25 | "prettier": "^3.0.1" 26 | }, 27 | "scripts": { 28 | "format": "prettier --write '**/*.{js,jsx,ts,tsx,json,html,css,scss,md}'", 29 | "prepush": "npm run format" 30 | }, 31 | "husky": { 32 | "hooks": { 33 | "pre-push": "npm run prepush" 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /web/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { browser: true, es2020: true }, 3 | extends: [ 4 | 'eslint:recommended', 5 | 'plugin:react/recommended', 6 | 'plugin:react/jsx-runtime', 7 | 'plugin:react-hooks/recommended', 8 | ], 9 | parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, 10 | settings: { react: { version: '18.2' } }, 11 | plugins: ['react-refresh'], 12 | rules: { 13 | 'react-refresh/only-export-components': 'warn', 14 | }, 15 | } 16 | -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | yarn.lock 14 | .env 15 | *.local 16 | 17 | # Editor directories and files 18 | .vscode/* 19 | !.vscode/extensions.json 20 | .idea 21 | .DS_Store 22 | *.suo 23 | *.ntvs* 24 | *.njsproj 25 | *.sln 26 | *.sw? 27 | -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- 1 | # Contributing to a Vite-Powered React Project 🚀 2 | 3 | Welcome to our open-source React project, which is powered by Vite! This guide will assist you in navigating the contribution process, ensuring a smooth and productive experience. Let's dive right in! 🛠️ 4 | 5 | ## Prerequisites 📋 6 | 7 | Before you get started, please ensure that your system has the following software installed: 8 | 9 | - **Git**: A version control system. [You can download it here](https://git-scm.com/downloads/) 🧑‍💻 10 | - **Node.js**: A JavaScript runtime. [You can download it here](https://nodejs.org/en/download) 🟢 11 | - **npm**: The Node Package Manager, which comes included with the Node.js installation 📦 12 | 13 | 14 | ## Contributing 🤝 15 | 16 | ### Step 1: Fork the Repository 🍴 17 | 18 | ![Fork](https://github.com/ArslanYM/StarterHive/assets/104521101/b2863384-753d-448b-9c8f-cc2122121c2b) 19 | 20 | - Start by forking this repository. Simply click the "Fork" button located in the top right corner of this page. 🚀 21 | 22 | 23 | ### Step 2: Clone Your Fork 📂 24 | 25 | ![Clone](https://github.com/ArslanYM/StarterHive/assets/104521101/ffe2cb3b-d7e9-41fb-a7e6-8f5ca9d50dd0) 26 | 27 | - Next, clone your forked repository to your local machine. Go to your GitHub account, open the forked repository, click the "Code" button, and copy the repository's URL. Then, open your terminal and execute the following command: 28 | 29 | ``` 30 | git clone "URL you just copied" 31 | ``` 32 | Replace "URL you just copied" with the URL you obtained from your forked repository. 🖥️ 33 | 34 | ![opy](https://github.com/ArslanYM/StarterHive/assets/104521101/5947298f-dd52-478c-9cd9-f22791eea4a5) 35 | 36 | The code will look something like this : 37 | ``` 38 | git clone https://github.com/{your user name}/StarterHive.git 39 | ``` 40 | 41 | 42 | ### Step 3: Navigate to the Project Directory 📁 43 | - Change your terminal's current directory to the project's "web" folder: 44 | 45 | ``` 46 | cd StaterHive/web 47 | ``` 48 | 49 | 50 | ### Step 4: Install Dependencies 📦 51 | 52 | In the web directory, install the required dependencies by running the following command: 53 | 54 | ``` 55 | npm install 56 | ``` 57 | This command will download and install all the packages specified in the project's package.json file. 📥 58 | 59 | ### Step 5: Create a New Branch 🌿 60 | Create a new branch for your work. It's best to choose a branch name that clearly reflects the purpose of your changes. Use the following command: 61 | 62 | ``` 63 | git checkout -b my-feature 64 | ``` 65 | 66 | - Replace "my-feature" with a descriptive branch name. 🌟 67 | 68 | ### Step 6: Make and Test Your Changes ✍️ 69 | Now, you can make the necessary code adjustments using your preferred code editor. To test your changes locally, run the project with: 70 | 71 | ``` 72 | npm run dev 73 | ``` 74 | This command initiates the development server and builds the project. Open your web browser and visit the provided URL to observe your changes. Thoroughly test to ensure everything functions as expected. ✅ 75 | 76 | ### Step 7: Commit and Push Your Changes ☑️ 77 | Once you're satisfied with your changes, it's time to commit them. First, stage your changes with: 78 | 79 | ``` 80 | git add . 81 | ``` 82 | 83 | - This command stages all modified files. 84 | 85 | - Commit your changes with a descriptive message: 86 | 87 | ``` 88 | git commit -m "Add my feature" 89 | ``` 90 | - Replace "Add my feature" with a brief description of your changes. 📝 91 | 92 | - Push your changes to your forked repository: 93 | 94 | ``` 95 | git push origin my-feature 96 | ``` 97 | - Replace "my-feature" with the name of your branch. 🚢 98 | 99 | ### Step 8: Create a Pull Request(PR) 🚀 100 | Head over to the main repository on GitHub. You should see a message indicating that you've recently pushed a branch. Click on the "Compare & pull request" button. 🔄 101 | 102 | ![image](https://github.com/ayush-chandil/StarterHive/assets/74442358/5b4e4724-0d55-492c-9fb9-c52d690d730d) 103 | 104 | 105 | Review your changes and provide a meaningful title and comment for your pull request. 💬 106 | 107 | Finally, click "Create pull request" to submit your contribution. 📤 108 | 109 | Congratulations! You've successfully contributed to our Vite-powered React project. Our project maintainers will review your pull request. 🎉 110 | 111 | Thank you for your valuable contribution! 👏 112 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Starter Hive 9 | 10 | 11 | 12 |
13 | 14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /web/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArslanYM/StarterHive/14b72b03dbea25faedcf2e52205a8c9c3854f3b1/web/package -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "web", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "vite build", 9 | "lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "axios": "^1.5.0", 14 | "prop-types": "^15.8.1", 15 | "react": "^18.2.0", 16 | "react-dom": "^18.2.0", 17 | "react-icons": "^4.8.0", 18 | "react-router-dom": "^6.11.2", 19 | "react-spinners": "^0.13.8", 20 | "react-syntax-highlighter": "^15.5.0" 21 | }, 22 | "devDependencies": { 23 | "@types/react": "^18.0.28", 24 | "@types/react-dom": "^18.0.11", 25 | "@vitejs/plugin-react": "^4.0.0", 26 | "autoprefixer": "^10.4.14", 27 | "eslint": "^8.38.0", 28 | "eslint-plugin-react": "^7.32.2", 29 | "eslint-plugin-react-hooks": "^4.6.0", 30 | "eslint-plugin-react-refresh": "^0.3.4", 31 | "postcss": "^8.4.23", 32 | "tailwindcss": "^3.3.2", 33 | "vite": "^4.3.2" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /web/postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /web/public/hive.svg: -------------------------------------------------------------------------------- 1 | 3 | 5 | 6 | 8 | 10 | 13 | 16 | 20 | 22 | 24 | 27 | 28 | 29 | 32 | 34 | -------------------------------------------------------------------------------- /web/src/App.jsx: -------------------------------------------------------------------------------- 1 | // eslint-disable-next-line no-unused-vars 2 | import React from 'react'; 3 | import { BrowserRouter, Routes, Route } from 'react-router-dom'; 4 | import ScrollTop from './components/ScrollTop'; 5 | import MasterLayout from './layouts'; 6 | import { Home, Contributors, Guide, ProjectList, NotFound } from './pages'; 7 | import { IssueList } from './pages/Issues/IssuesPage/IssueList'; 8 | 9 | function App() { 10 | return ( 11 | 12 | 13 | 14 | 15 | } /> 16 | } /> 17 | } /> 18 | } /> 19 | } /> 20 | } /> 21 | 22 | 23 | 24 | 25 | ); 26 | } 27 | 28 | export default App; 29 | -------------------------------------------------------------------------------- /web/src/assets/hero_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArslanYM/StarterHive/14b72b03dbea25faedcf2e52205a8c9c3854f3b1/web/src/assets/hero_picture.png -------------------------------------------------------------------------------- /web/src/assets/hive.svg: -------------------------------------------------------------------------------- 1 | 3 | 5 | 6 | 8 | 10 | 13 | 16 | 20 | 22 | 24 | 27 | 28 | 29 | 32 | 34 | -------------------------------------------------------------------------------- /web/src/assets/img-placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArslanYM/StarterHive/14b72b03dbea25faedcf2e52205a8c9c3854f3b1/web/src/assets/img-placeholder.jpg -------------------------------------------------------------------------------- /web/src/assets/img-placeholder2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArslanYM/StarterHive/14b72b03dbea25faedcf2e52205a8c9c3854f3b1/web/src/assets/img-placeholder2.jpg -------------------------------------------------------------------------------- /web/src/assets/img-placeholder3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArslanYM/StarterHive/14b72b03dbea25faedcf2e52205a8c9c3854f3b1/web/src/assets/img-placeholder3.png -------------------------------------------------------------------------------- /web/src/assets/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArslanYM/StarterHive/14b72b03dbea25faedcf2e52205a8c9c3854f3b1/web/src/assets/search.png -------------------------------------------------------------------------------- /web/src/components/Fab/Fab.jsx: -------------------------------------------------------------------------------- 1 | // import React from "react"; 2 | 3 | import { useEffect, useState } from "react"; 4 | import PropTypes from "prop-types"; 5 | 6 | export const Fab = ({ isVisible }) => { 7 | const [isMounted, setIsMounted] = useState(false); 8 | 9 | const DELAY = 500; 10 | 11 | useEffect(() => { 12 | let timeoutId; 13 | 14 | timeoutId = setTimeout(() => { 15 | setIsMounted(true); 16 | }, DELAY); 17 | 18 | return () => clearTimeout(timeoutId); 19 | }, []); 20 | 21 | const scrollUp = () => { 22 | window.scroll({ 23 | behavior: "smooth", 24 | top: 0, 25 | left: 0, 26 | }); 27 | }; 28 | 29 | const showUpAnimation = "-translate-y-4 opacity-100 "; 30 | const hideAnimation = "translate-y-20 opacity-0 "; 31 | 32 | return ( 33 | <> 34 | {(isVisible || isMounted) && ( 35 |
41 | 49 | 54 | 55 |
56 | )} 57 | 58 | ); 59 | }; 60 | 61 | Fab.propTypes = { 62 | isVisible: PropTypes.bool, 63 | }; 64 | -------------------------------------------------------------------------------- /web/src/components/HeroImage.jsx: -------------------------------------------------------------------------------- 1 | const HeroImg = ({ className, imgSrc, altText }) => { 2 | return {altText}; 3 | }; 4 | 5 | export default HeroImg; 6 | -------------------------------------------------------------------------------- /web/src/components/Input/Input.jsx: -------------------------------------------------------------------------------- 1 | import PropTypes from 'prop-types'; 2 | 3 | export const Input = ({ innerRef, name, value, placeholder, onClick, onChange, type }) => { 4 | 5 | return ( 6 | 16 | ); 17 | } 18 | Input.propTypes = { 19 | innerRef: PropTypes.object, 20 | name: PropTypes.string, 21 | value: PropTypes.string, 22 | placeholder: PropTypes.string, 23 | onClick: PropTypes.func, 24 | onChange: PropTypes.func, 25 | type: PropTypes.oneOf(['search', 'text', 'number', 'email', 'password', 'url', 'tel']) 26 | } -------------------------------------------------------------------------------- /web/src/components/ScrollTop.jsx: -------------------------------------------------------------------------------- 1 | import {useEffect} from 'react' 2 | import { useLocation } from 'react-router-dom' 3 | 4 | 5 | const ScrollTop = ({children}) => { 6 | const location = useLocation() 7 | useEffect(() => { 8 | window.scrollTo({ 9 | top: 0, 10 | left: 0, 11 | behavior: "smooth" 12 | }) 13 | }, [location]) 14 | 15 | return ( 16 | <>{children} 17 | ) 18 | } 19 | 20 | export default ScrollTop -------------------------------------------------------------------------------- /web/src/hooks/useInterectionObserver.jsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef, useState } from "react"; 2 | import PropTypes from "prop-types"; 3 | 4 | export const useInterectionObserver = (margin = "0px") => { 5 | const [isIntersecting, setIsIntersecting] = useState(false); 6 | 7 | const observerRef = useRef(null); 8 | 9 | useEffect(() => { 10 | const observer = new IntersectionObserver( 11 | ([entry]) => { 12 | setIsIntersecting(entry.isIntersecting); 13 | }, 14 | { rootMargin: margin } 15 | ); 16 | observer.observe(observerRef.current); 17 | 18 | return () => observer.disconnect(); 19 | }, [margin]); 20 | 21 | return { isIntersecting, observerRef }; 22 | }; 23 | 24 | useInterectionObserver.propTypes = { 25 | isVisible: PropTypes.string, 26 | }; 27 | -------------------------------------------------------------------------------- /web/src/index.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;700;800&display=swap'); 2 | @tailwind base; 3 | @tailwind components; 4 | @tailwind utilities; 5 | 6 | @layer utilities { 7 | .width-unset { 8 | width: unset; 9 | } 10 | } 11 | 12 | html, 13 | body { 14 | /* @apply bg-gradient-to-r from-gray-700 via-gray-900 to-black; */ 15 | } 16 | 17 | .bg_Dark_Theme { 18 | background: #000000; 19 | } 20 | 21 | ::-webkit-scrollbar { 22 | width: 10px; 23 | height: 10px; 24 | } 25 | 26 | ::-webkit-scrollbar-track { 27 | background-color: #000000f0; 28 | } 29 | 30 | ::-webkit-scrollbar-thumb { 31 | background-color: #facc17; 32 | border-radius: 5px; 33 | } 34 | 35 | .thin-scrollbar::-webkit-scrollbar { 36 | width: 4px; 37 | height: 4px; 38 | } 39 | 40 | .thin-scrollbar::-webkit-scrollbar-track { 41 | background-color: rgba(0, 0, 0, 0.1); 42 | } 43 | 44 | .thin-scrollbar::-webkit-scrollbar-thumb { 45 | background-color: #a5a5a5; 46 | border-radius: 1px; 47 | } 48 | -------------------------------------------------------------------------------- /web/src/layouts/Footer.jsx: -------------------------------------------------------------------------------- 1 | // eslint-disable-next-line no-unused-vars 2 | import React from 'react'; 3 | import { FaDiscord, FaGithub, FaTwitter } from 'react-icons/fa' 4 | import footer_icon from '../assets/hive.svg' 5 | import { Link } from "react-router-dom"; 6 | 7 | const Footer = () => { 8 | return ( 9 | 59 | ) 60 | } 61 | 62 | export default Footer; 63 | -------------------------------------------------------------------------------- /web/src/layouts/Header.jsx: -------------------------------------------------------------------------------- 1 | // eslint-disable-next-line no-unused-vars 2 | import React, { useState } from 'react'; 3 | import { Link, useLocation } from 'react-router-dom'; 4 | import { VscGithubAlt, VscChromeClose } from 'react-icons/vsc'; 5 | import { AiOutlineCoffee } from 'react-icons/ai' 6 | 7 | import logo from '../assets/hive.svg'; 8 | 9 | const Header = () => { 10 | const [isDrawerOpen, setIsDrawerOpen] = useState(false); 11 | 12 | const location = useLocation(); 13 | const path = location.pathname; 14 | 15 | const toggleDrawer = () => { 16 | setIsDrawerOpen(!isDrawerOpen); 17 | }; 18 | 19 | const closeDrawer = () => { 20 | setIsDrawerOpen(false); 21 | }; 22 | 23 | const MENU_ITEMS = [ 24 | { 25 | title: 'Home', 26 | path: '/', 27 | }, 28 | { 29 | title: 'Contributors', 30 | path: '/contributors', 31 | }, 32 | { 33 | title: 'Docs', 34 | path: '/docs', 35 | }, 36 | { 37 | title: 'Projects', 38 | path: '/projects', 39 | }, 40 | ]; 41 | 42 | return ( 43 |
44 | 131 |
132 | ); 133 | }; 134 | 135 | export default Header; 136 | -------------------------------------------------------------------------------- /web/src/layouts/Hero.jsx: -------------------------------------------------------------------------------- 1 | // eslint-disable-next-line no-unused-vars 2 | import React from "react"; 3 | import PropTypes from "prop-types"; 4 | 5 | const Hero = ({ children }) => { 6 | return <>{children}; 7 | }; 8 | 9 | export default Hero; 10 | 11 | Hero.propTypes = { 12 | children: PropTypes.element.isRequired, 13 | }; 14 | -------------------------------------------------------------------------------- /web/src/layouts/MasterLayout.jsx: -------------------------------------------------------------------------------- 1 | // eslint-disable-next-line no-unused-vars 2 | import React from "react"; 3 | import PropTypes from "prop-types"; 4 | import Header from "./Header"; 5 | import Footer from "./Footer"; 6 | import Hero from "./Hero"; 7 | 8 | const MasterLayout = ({ children }) => { 9 | return ( 10 | <> 11 |
12 |
13 | {children} 14 |
15 |