├── .all-contributorsrc ├── .editorconfig ├── .eslintignore ├── .firebaserc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── dependabot.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .sonarcloud.properties ├── .stylelintrc ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HackOdishaBanner.jpeg ├── LICENSE ├── README.md ├── firebase.json ├── package-lock.json ├── package.json ├── public ├── index.html ├── logo.png ├── logo_48.png ├── manifest.json ├── robots.txt └── sitemap.xml └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── ScheduleCard.js ├── Speakercard.js ├── Team │ ├── CommunityPartner.jsx │ ├── OutreachPartner.jsx │ ├── TeamData.js │ ├── team.scss │ └── teamHackodisha.jsx ├── card.js ├── footer │ ├── footer.css │ ├── footer.js │ └── footerElement.js ├── home-cards │ ├── HomeCard.css │ ├── HomeCard.jsx │ ├── HomeCardElement.js │ └── TracksData.jsx ├── logo │ └── index.jsx ├── navbar │ ├── accessibility.jsx │ ├── index.jsx │ ├── menuToggle.jsx │ ├── mobileNavLinks.jsx │ └── navLinks.jsx ├── prizes-card │ ├── PrizesCard.css │ ├── PrizesCard.jsx │ ├── PrizesCardElement.js │ └── PrizesData.js ├── raisebox │ └── raisebox.js ├── responsive │ └── index.js └── typeform │ └── typeform.js ├── index.css ├── index.js ├── pages ├── 404.jsx ├── ScheduleData.js ├── SpeakerData.js ├── about.jsx ├── calendly.jsx ├── events.jsx ├── faq.jsx ├── home.jsx ├── home2.jsx ├── main.jsx ├── prizes.jsx ├── schedule.jsx ├── speakers.jsx ├── sponData.jsx ├── sponsors.jsx ├── style.css ├── team.jsx └── tracks.jsx ├── reportWebVitals.js └── setupTests.js /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "contributors": [ 8 | { 9 | "login": "Bartek532", 10 | "name": "Bartosz Zagrodzki", 11 | "avatar_url": "https://avatars.githubusercontent.com/u/57185551?v=4", 12 | "profile": "http://bartek532.github.io/portfolio", 13 | "contributions": [ 14 | "a11y", 15 | "bug", 16 | "code", 17 | "ideas", 18 | "review" 19 | ] 20 | }, 21 | { 22 | "login": "Aniket762", 23 | "name": "Aniket Pal", 24 | "avatar_url": "https://avatars.githubusercontent.com/u/67703407?v=4", 25 | "profile": "https://aniket.live", 26 | "contributions": [ 27 | "maintenance", 28 | "mentoring", 29 | "projectManagement", 30 | "doc", 31 | "code", 32 | "content" 33 | ] 34 | }, 35 | { 36 | "login": "Sonakshi1901", 37 | "name": "Sonakshi Satpathy", 38 | "avatar_url": "https://avatars.githubusercontent.com/u/76627480?v=4", 39 | "profile": "https://github.com/Sonakshi1901", 40 | "contributions": [ 41 | "code", 42 | "bug", 43 | "ideas" 44 | ] 45 | }, 46 | { 47 | "login": "sumana2001", 48 | "name": "Sumana Basu", 49 | "avatar_url": "https://avatars.githubusercontent.com/u/63084088?v=4", 50 | "profile": "https://sumana.live/", 51 | "contributions": [ 52 | "code", 53 | "bug", 54 | "ideas" 55 | ] 56 | } 57 | ], 58 | "contributorsPerLine": 7, 59 | "projectName": "hackodisha-web", 60 | "projectOwner": "Hackodisha", 61 | "repoType": "github", 62 | "repoHost": "https://github.com", 63 | "skipCi": true, 64 | "badgeTemplate": "" 65 | } 66 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | end_of_line = lf 7 | insert_final_newline = true 8 | max_line_length = 140 9 | quote_type = single 10 | spaces_around_brackets = true 11 | spaces_around_operators = true 12 | trim_trailing_whitespace = true 13 | 14 | 15 | # identation 16 | indent_style = space 17 | indent_size = 4 -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | internals/scripts 2 | internals/generators 3 | internals/templates 4 | server/ 5 | *.html 6 | node_modules 7 | coverage 8 | build 9 | node_modules -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "hackodisha" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: "[Bug]" 5 | labels: "Type: Bug" 6 | assignees: "" 7 | --- 8 | 9 | **To Reproduce** 10 | Steps to reproduce the behavior: 11 | 12 | **Actual behavior** 13 | What actually happened. 14 | 15 | **Expected behavior** 16 | A clear and concise description of what you expected to happen. 17 | 18 | **Notes** 19 | Ideas for fix or anything else. 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: "[Feature]" 5 | labels: "Type: Feature" 6 | assignees: "" 7 | --- 8 | 9 | **Problem** 10 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 11 | 12 | **Idea** 13 | A clear and concise description of what you want to happen. 14 | 15 | **Notes** 16 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 3 | Please read the [Contribution Guidelines](../CONTRIBUTING.md) before opening a pull request. 4 | 5 | ### Summary 6 | 7 | Include a summary of the change and which issue is fixed. 8 | 9 | ### Browser checklist 10 | 11 | This PR has been tested in the following browsers: 12 | 13 | - [ ] Chrome 14 | - [ ] Safari 15 | - [ ] Firefox 16 | 17 | ### Closes # <-- link the issue number here 18 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "npm" # See documentation for possible values 4 | directory: "/" # Location of package manifests 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.DS_Store 3 | /.eslintcache 4 | /build 5 | /.firebase 6 | yarn.lock 7 | **/.DS_Store 8 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact = true -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/dubnium -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | internals/generators/ 4 | internals/scripts/ 5 | package-lock.json 6 | yarn.lock 7 | package.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 80, 3 | "tabWidth": 2, 4 | "useTabs": false, 5 | "semi": true, 6 | "singleQuote": true, 7 | "trailingComma": "all", 8 | "arrowParens": "avoid" 9 | } -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- 1 | sonar.sources=src 2 | sonar.exclusions=**/*.test.* -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "processors": ["stylelint-processor-styled-components"], 3 | "extends": [ 4 | "stylelint-config-recommended", 5 | "stylelint-config-styled-components" 6 | ] 7 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 'node' 5 | - 'lts/*' 6 | 7 | services: 8 | - xvfb 9 | 10 | script: 11 | - node ./internals/scripts/generate-templates-for-linting 12 | - npm test -- --maxWorkers=4 13 | - npm run build 14 | 15 | before_install: 16 | - export CHROME_BIN=chromium-browser 17 | - export DISPLAY=:99.0 18 | 19 | notifications: 20 | email: 21 | on_failure: change 22 | 23 | after_success: 'npm run coveralls' 24 | 25 | cache: 26 | directories: 27 | - node_modules 28 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | - Using welcoming and inclusive language 18 | - Being respectful of differing viewpoints and experiences 19 | - Gracefully accepting constructive criticism 20 | - Focusing on what is best for the community 21 | - Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | - The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | - Trolling, insulting/derogatory comments, and personal or political attacks 28 | - Public or private harassment 29 | - Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | - Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at webwiznitr@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | When contributing to this repository, please first discuss the change you wish to make via issue with the maintainers of this repository before making a change. 4 | 5 | Please note we have a CODE_OF_CONDUCT.md, please follow it in all your interactions with the project. 6 | 7 | ## Pull Request Process 8 | 9 | 1. Ensure any install or build dependencies are removed before the end of the layer when doing a 10 | build. Add only relevant files to commit and ignore the rest to keep the repo clean. 11 | 2. Update the README.md with details of changes to the interface, this includes new environment 12 | variables, exposed ports, useful file locations and container parameters. 13 | 3. You should request review from the maintainers once you submit the Pull Request. 14 | 15 | ## Instructions 16 | 17 | - Git Workflow 18 | 19 | ```bash 20 | ## Step 1: Fork Repository 21 | 22 | ## Step 2: Git Set Up & Download 23 | # Clone the repo 24 | $ git clone https://github.com//.git 25 | # Add upstream remote 26 | $ git remote add upstream https://github.com/Hackodisha/hackodisha-web.git 27 | # Fetch and merge with upstream/master 28 | $ git fetch upstream 29 | $ git merge upstream/master 30 | 31 | ## Step 2: Create and Publish Working Branch 32 | $ git checkout -b //{} 33 | $ git push origin //{} 34 | 35 | ## Types: 36 | # wip - Work in Progress; long term work; mainstream changes; 37 | # feat - New Feature; future planned; non-mainstream changes; 38 | # bug - Bug Fixes 39 | # exp - Experimental; random experiemntal features; 40 | ``` 41 | 42 | - On Task Completion: 43 | 44 | ```bash 45 | ## Committing and pushing your work 46 | # Ensure branch 47 | $ git branch 48 | # Fetch and merge with upstream/master 49 | $ git fetch upstream 50 | $ git merge upstream/master 51 | # Add untracked files 52 | $ git add . 53 | # Commit all changes with appropriate commit message and description 54 | $ git commit -m "your-commit-message" -m "your-commit-description" 55 | # Fetch and merge with upstream/master again 56 | $ git fetch upstream 57 | $ git merge upstream/master 58 | # Push changes to your forked repository 59 | $ git push origin //{} 60 | 61 | ## Creating the PR using GitHub Website 62 | # Create Pull Request from //{} branch in your forked repository to the master branch in the upstream repository 63 | # After creating PR, add a Reviewer (Any Admin) and yourself as the assignee 64 | # Link Pull Request to appropriate Issue, or Project+Milestone (if no issue created) 65 | # IMPORTANT: Do Not Merge the PR unless specifically asked to by an admin. 66 | ``` 67 | 68 | - After PR Merge 69 | 70 | ```bash 71 | # Delete branch from forked repo 72 | $ git branch -d //{} 73 | $ git push --delete origin //{} 74 | # Fetch and merge with upstream/master 75 | $ git checkout master 76 | $ git pull upstream 77 | $ git push origin 78 | ``` 79 | 80 | - Always follow [commit message standards](https://chris.beams.io/posts/git-commit/) 81 | - About the [fork-and-branch workflow](https://blog.scottlowe.org/2015/01/27/using-fork-branch-git-workflow/) 82 | 83 | ## Adding contributors 84 | 85 | https://allcontributors.org/docs/en/bot/usage 86 | -------------------------------------------------------------------------------- /HackOdishaBanner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackodisha/hackodisha-web/79853394484e61e33779d60c2acd4005e7be9681/HackOdishaBanner.jpeg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

HackOdisha

4 | 5 |

Hackodisha brings an enterprising platform where hackers can showcase their unique ideas and expand boundaries with their creativity and proficiency. Webwiz, the technical club of NIT Rourkela is proud to host the hackathon on the eve of the diamond jubilee celebration of NIT Rourkela and strives to make it exciting, edifying, and educational. We will also be having many Pre-hack events for around a month where multiple communities will be organizing workshops and competitions. In this 36 hours

6 | 7 | Screenshot 2021-09-16 at 1 17 30 PM 8 | 9 | [![Starware](https://img.shields.io/badge/⭐-Starware-f5a91a?labelColor=black)](https://github.com/zepfietje/starware) 10 | 11 | Hackodisha-web is Starware. 12 | This means you're free to use the project, as long as you star its GitHub repository. 13 | Your appreciation makes us grow and glow up. ⭐
14 | The license of this repository has changed from `MIT License` to `GNU AGPLv3`. 15 | 16 | 17 | #### [Development](https://hackodisha.web.app/) 18 | 19 | 20 | # Prerequisites 👨‍💻 21 | 22 | ### Install Node JS 23 | Refer to https://nodejs.org/en/ to install nodejs 24 | 25 | ### Install create-react-app 26 | Install create-react-app npm package globally. This will help to easily run the project and also build the source files easily. Use the following command to install create-react-app 27 | 28 | ```bash 29 | npm install -g create-react-app 30 | ``` 31 | 32 | ## Cloning and Running the Application in local 💻 33 | 34 | Clone the project in localhost 35 | ```bash 36 | git clone https://github.com/Hackodisha/hackodisha-web.git 37 | ``` 38 | Install all the npm packages. Go into the project folder and type the following command to install all npm packages 39 | 40 | ```bash 41 | npm install 42 | ``` 43 | 44 | In order to run the application Type the following command 45 | 46 | ```bash 47 | npm start 48 | ``` 49 | 50 | The Application Runs on **localhost:3000** 51 | 52 | 53 | `Contributions are welcome 🎉🎉` 54 | 55 | # Ways to contribute: 56 | 1. Solve the issues which are listed 57 | 2. Create your own issue and then send PR. 58 | 59 | Please refer to the project's style and contribution guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow. 60 | 61 | 1. **Fork** the repo on GitHub 62 | 2. **Clone** the project to your own machine 63 | 3. **Commit** changes to your own branch 64 | 4. **Push** your work back up to your fork 65 | 5. Submit a **Pull request** so that we can review your changes 66 | 6. So, feel free to fork this repo. If you do, please just give us proper credit by linking back to our website, https://hackodisha.xyz/. 67 | 68 | ### Please abide by [Contributing Guidelines](https://github.com/Hackodisha/hackodisha-web/blob/main/CONTRIBUTING.md) and [Code of Conduct](https://github.com/Hackodisha/hackodisha-web/blob/main/CODE_OF_CONDUCT.md) 🚀 69 | 70 | ## Major Contributors ✨ 71 | 72 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 |

Aniket Pal

🚧 🧑‍🏫 📆 📖 💻 🖋

Sumana Basu

💻 🐛 🤔
82 | 83 | 84 | 85 | 86 | 87 | 88 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! 89 | -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "hosting": { 3 | "public": "build", 4 | "ignore": [ 5 | "firebase.json", 6 | "**/.*", 7 | "**/node_modules/**" 8 | ], 9 | "rewrites": [ 10 | { 11 | "source": "**", 12 | "destination": "/index.html" 13 | } 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hack-odisha", 3 | "version": "0.1.0", 4 | "author": "Aniket", 5 | "private": true, 6 | "dependencies": { 7 | "@emotion/core": "^11.0.0", 8 | "@material-ui/core": "^4.12.3", 9 | "@material-ui/icons": "^4.11.2", 10 | "@popperjs/core": "^2.9.3", 11 | "@testing-library/jest-dom": "^5.14.1", 12 | "@testing-library/react": "^12.0.0", 13 | "@testing-library/user-event": "^13.2.1", 14 | "aos": "^2.3.4", 15 | "bootstrap": "^5.0.2", 16 | "codyhouse-framework": "^2.9.0", 17 | "framer-motion": "^4.1.17", 18 | "grid-system": "^0.1.0", 19 | "node-sass": "6.0.1", 20 | "react": "^17.0.2", 21 | "react-calendly": "^2.2.1", 22 | "react-chrono": "^1.10.0", 23 | "react-dom": "^17.0.2", 24 | "react-faq-component": "^1.3.1", 25 | "react-grid-system": "^7.3.1", 26 | "react-helmet": "^6.1.0", 27 | "react-icons": "^4.2.0", 28 | "react-messenger-customer-chat": "^0.8.0", 29 | "react-modal": "^3.14.3", 30 | "react-popper": "^2.2.5", 31 | "react-responsive": "^8.2.0", 32 | "react-router-dom": "^5.2.0", 33 | "react-scripts": "4.0.3", 34 | "react-spinners": "^0.11.0", 35 | "react-typeform-embed": "^1.0.7", 36 | "react-vertical-timeline-component": "^3.3.3", 37 | "reactjs-popup": "^2.0.5", 38 | "reactstrap": "^8.10.0", 39 | "styled-components": "^5.2.3", 40 | "web-vitals": "^2.1.0" 41 | }, 42 | "scripts": { 43 | "start": "react-scripts start", 44 | "build": "react-scripts build", 45 | "test": "react-scripts test", 46 | "eject": "react-scripts eject" 47 | }, 48 | "eslintConfig": { 49 | "extends": [ 50 | "react-app", 51 | "react-app/jest" 52 | ] 53 | }, 54 | "browserslist": { 55 | "production": [ 56 | ">0.2%", 57 | "not dead", 58 | "not op_mini all" 59 | ], 60 | "development": [ 61 | "last 1 chrome version", 62 | "last 1 firefox version", 63 | "last 1 safari version" 64 | ] 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | 15 | 16 | 20 | 24 | 28 | 29 | 30 | 31 | 35 | 36 | 40 | 44 | 48 | 49 | 53 | 57 | 58 | 59 | 60 | 61 | 75 | 76 | 77 | Hackodisha celebrating diamond jubliee of NIT Rourkela | Hackathon 78 | 79 | 80 | 81 |
82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackodisha/hackodisha-web/79853394484e61e33779d60c2acd4005e7be9681/public/logo.png -------------------------------------------------------------------------------- /public/logo_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackodisha/hackodisha-web/79853394484e61e33779d60c2acd4005e7be9681/public/logo_48.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Hackodisha celebrating diamond jubliee of NIT Rourkela | Hackathon", 3 | "short_name": "Hackodisha", 4 | "start_url": "https://hackodisha.xyz", 5 | "display": "standalone", 6 | "lang":"en", 7 | "categories": ["Hackodisha","Hackathon","NIT Rourkela", "Odisha", "Hackathon2021","India", "Developers" , "Webwiz"], 8 | "background_color": "#000", 9 | "description": "Hackodisha a 36 hours community focused online Hackathon of Odisha organized by Webwiz NIT Rourkela on the occassion of diamond jubliee. Enjoy mutiple workshops , coding contents , movie night , scribble and a lot more", 10 | "theme_color": "#000000", 11 | "prefer_related_applications": true, 12 | "icons": [{ 13 | "src": "logo_48.png", 14 | "sizes": "48x48", 15 | "type": "image/png" 16 | }], 17 | "related_applications": [ 18 | { 19 | "platform": "facebook", 20 | "url": "https://www.facebook.com/hackodisha/", 21 | }, 22 | { 23 | "platform": "instagram", 24 | "url": "https://www.instagram.com/webwiz.nitr/" 25 | }, 26 | { 27 | "platform": "twitter", 28 | "url": "https://twitter.com/hackodisha" 29 | }, 30 | { 31 | "platform": "linkedIn", 32 | "url": "https://www.linkedin.com/company/hack-odisha/" 33 | } 34 | ] 35 | } -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # Group 1 2 | User-agent: Googlebot 3 | Disallow: /nogooglebot/ 4 | 5 | # Group 2 6 | User-agent: * 7 | Allow: / 8 | 9 | Sitemap: https://hackodisha.xyz/sitemap.xml 10 | -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | https://hackodisha.xyz/ 9 | 2021-08-23T19:38:51+00:00 10 | 1.00 11 | 12 | 13 | https://links.hackodisha.xyz/ 14 | 2021-08-23T19:38:51+00:00 15 | 0.90 16 | 17 | 18 | https://leaderboard.hackodisha.xyz/ 19 | 2021-08-23T19:38:51+00:00 20 | 0.90 21 | 22 | 23 | https://guide.hackodisha.xyz/ 24 | 2021-08-23T19:38:51+00:00 25 | 0.90 26 | 27 | 28 | https://guide.hackodisha.xyz/docs/introduction/ 29 | 2021-08-23T19:38:51+00:00 30 | 0.80 31 | 32 | 33 | https://guide.hackodisha.xyz/docs/rules/ 34 | 2021-08-23T19:38:51+00:00 35 | 0.64 36 | 37 | 38 | https://guide.hackodisha.xyz/docs/conduct/ 39 | 2021-08-23T19:38:51+00:00 40 | 0.64 41 | 42 | 43 | https://guide.hackodisha.xyz/docs/faq/ 44 | 2021-08-23T19:38:51+00:00 45 | 0.64 46 | 47 | 48 | https://guide.hackodisha.xyz/docs/more-questions/ 49 | 2021-08-23T19:38:51+00:00 50 | 0.64 51 | 52 | 53 | https://guide.hackodisha.xyz/docs/tc/ 54 | 2021-08-23T19:38:51+00:00 55 | 0.64 56 | 57 | 58 | https://guide.hackodisha.xyz/docs/prehack/ 59 | 2021-08-20T06:32:01+00:00 60 | 0.64 61 | 62 | 63 | https://guide.hackodisha.xyz/docs/schedule/ 64 | 2021-08-20T06:32:01+00:00 65 | 0.64 66 | 67 | 68 | https://guide.hackodisha.xyz/docs/judging/ 69 | 2021-08-20T06:32:01+00:00 70 | 0.64 71 | 72 | 73 | https://guide.hackodisha.xyz/docs/project-submission/ 74 | 2021-08-20T06:32:01+00:00 75 | 0.64 76 | 77 | 78 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | background: url("https://res.cloudinary.com/webwiznitr/image/upload/v1627814997/Assets/Images/hackodishabg_mwafwh.png") no-repeat; 4 | background-size: cover; 5 | background-attachment: fixed; 6 | } 7 | 8 | .styles_faq-row-wrapper__3vA1D .styles_row-body__1NvUo .styles_faq-row__2YF3c .styles_row-title__1YiiY.styles_no-tabfocus__1HmyD { 9 | height:80px; 10 | } 11 | 12 | /* hackodisha */ 13 | 14 | 15 | .main{ 16 | overflow-x: hidden; 17 | } 18 | 19 | 20 | @media screen and (max-width:992px) { 21 | .App{ 22 | background-position: 70% top; 23 | } 24 | } 25 | 26 | .App-logo { 27 | height: 40vmin; 28 | pointer-events: none; 29 | } 30 | 31 | @media (prefers-reduced-motion: no-preference) { 32 | .App-logo { 33 | animation: App-logo-spin infinite 20s linear; 34 | } 35 | } 36 | 37 | .App-header { 38 | background-color: #282c34; 39 | min-height: 100vh; 40 | display: flex; 41 | flex-direction: column; 42 | align-items: center; 43 | justify-content: center; 44 | font-size: calc(10px + 2vmin); 45 | color: white; 46 | } 47 | 48 | .App-link { 49 | color: #61dafb; 50 | } 51 | 52 | @keyframes App-logo-spin { 53 | from { 54 | transform: rotate(0deg); 55 | } 56 | to { 57 | transform: rotate(360deg); 58 | } 59 | } 60 | 61 | body::-webkit-scrollbar { 62 | width: 7px; 63 | } 64 | body::-webkit-scrollbar-track { 65 | background-color: #242526; 66 | } 67 | body::-webkit-scrollbar-thumb { 68 | background-color: hsla(0,0%,100%,0.4); 69 | border-radius: 20px; 70 | } 71 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import MessengerCustomerChat from 'react-messenger-customer-chat'; 2 | import React, { useState, useEffect } from 'react'; 3 | import { css } from '@emotion/react'; 4 | import HashLoader from 'react-spinners/HashLoader'; 5 | import Footer from './components/footer/footer'; 6 | import './App.css'; 7 | import { Navbar } from './components/navbar'; 8 | import { BrowserRouter as Router, Route, Switch } from 'react-router-dom'; 9 | import Main from './pages/main'; 10 | import NotFound from './pages/404'; 11 | import TeamHackodisha from './components/Team/teamHackodisha'; 12 | 13 | const loadercss = css` 14 | display: block; 15 | padding-top: 560px; 16 | margin-left: 48%; 17 | text-align: center; 18 | 19 | @media only screen and (max-width: 320px) { 20 | margin: 0 auto; 21 | } 22 | @media only screen and (min-width: 320px) and (max-width: 600px) { 23 | margin: 0 auto; 24 | } 25 | `; 26 | 27 | function App() { 28 | const [loading, setLoading] = useState(false); 29 | useEffect(() => { 30 | setLoading(true); 31 | setTimeout(() => { 32 | setLoading(false); 33 | }, 2500); 34 | }, []); 35 | 36 | return loading ? ( 37 | 38 | ) : ( 39 | 40 |
41 | 42 |
43 | 44 | 45 | 46 | 47 | 48 |
49 | 54 |
55 |
56 |
57 | ); 58 | } 59 | 60 | export default App; 61 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from "@testing-library/react"; 2 | import App from "./App"; 3 | 4 | test("renders learn react link", () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /src/components/ScheduleCard.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "../pages/style.css"; 3 | function ScheduleCard(props) { 4 | return ( 5 |
6 |
7 |
8 | {props.time} 9 | {props.date} 10 |
11 |
12 |
13 | {" "} 14 |
15 | {props.title} 16 | 17 |
18 |
19 |
20 |
21 |
22 | ); 23 | } 24 | 25 | export default ScheduleCard; 26 | -------------------------------------------------------------------------------- /src/components/Speakercard.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import styled from "styled-components"; 3 | 4 | const CenteredAnchor = styled.a` 5 | display: flex; 6 | flex-direction: column; 7 | justify-content: center; 8 | align-items: center; 9 | 10 | `; 11 | 12 | export default function MediaCard(props) { 13 | return ( 14 |
15 | 16 | 17 | {props.alt} 24 | 25 | 26 | 27 | 28 |

{props.name}

29 |
{props.description}
30 | {props.alt_company} 35 |
36 |
37 | 38 | ); 39 | } 40 | -------------------------------------------------------------------------------- /src/components/Team/CommunityPartner.jsx: -------------------------------------------------------------------------------- 1 | 2 | const CommunityData = [ 3 | { 4 | id: 1, 5 | Name: "Hack Club ITER", 6 | 7 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621700/community-partners/Hack_Club_ITER_zizclp.png", 8 | linkedIn: "https://www.linkedin.com/company/hackclubiter/", 9 | }, 10 | { 11 | id: 2, 12 | Name: "CODEX ITER", 13 | 14 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621700/community-partners/Codex_ITER_iitwvv.png", 15 | linkedIn: "https://www.linkedin.com/company/codex-iter/", 16 | }, 17 | { 18 | id: 3, 19 | Name: "Zairza", 20 | 21 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621701/community-partners/Zairza_CET_kwwgza.webp", 22 | linkedIn: "https://www.linkedin.com/company/zairza/", 23 | }, 24 | { 25 | id: 4, 26 | Name: "HackClub Coet", 27 | 28 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621699/community-partners/Hack_Club_COET_ovw27s.png", 29 | linkedIn: "https://www.linkedin.com/company/hackclubcoet/", 30 | }, 31 | { 32 | id: 5, 33 | Name: "Code Dazzlers", 34 | 35 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621699/community-partners/Code_Dazzlers_xvvmfi.png", 36 | linkedIn: "https://www.linkedin.com/company/codedazzlers/", 37 | }, 38 | { 39 | id: 6, 40 | Name: "Codeflow", 41 | 42 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621699/community-partners/codeflow_ss5xqg.png", 43 | linkedIn: "https://www.linkedin.com/company/codefloworg/", 44 | }, 45 | { 46 | id: 7, 47 | Name: "TensorFlow", 48 | 49 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621701/community-partners/TFUG_Chandigarh_srxfly.png", 50 | linkedIn: "https://www.linkedin.com/company/tensorflow/", 51 | }, 52 | { 53 | id: 8, 54 | Name: "DSC - NIIT University", 55 | 56 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621699/community-partners/DSC_NIIT_ykun1a.png", 57 | linkedIn: "https://www.linkedin.com/company/developer-student-club-niit-university/", 58 | }, 59 | // { 60 | // id: 9, 61 | // Name: "Team Indigo GGITS", 62 | 63 | // imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621700/community-partners/Team_Indigo_GGITS_sqmi8h.jpg", 64 | // linkedIn: "https://www.linkedin.com/company/team-indigo-ggits/about/", 65 | // }, 66 | { 67 | id: 10, 68 | Name: "TechDemo", 69 | 70 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621700/community-partners/techdemo_liuna9.png", 71 | linkedIn: "https://www.linkedin.com/company/techdemo/", 72 | }, 73 | { 74 | id: 11, 75 | Name: "CodeWithUs", 76 | 77 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621699/community-partners/code_with_us_srvg2a.png", 78 | linkedIn: "https://www.linkedin.com/company/code-with-us/", 79 | }, 80 | { 81 | id: 12, 82 | Name: "Hack The Mountain's", 83 | 84 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621700/community-partners/HACK_THE_MOUNTAIN_eiz1as.svg", 85 | linkedIn: "https://www.linkedin.com/company/hack-the-mountain-s/", 86 | }, 87 | { 88 | id: 13, 89 | Name: "Semikolan", 90 | 91 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621701/community-partners/smikolan_pa26ht.png", 92 | linkedIn: "https://www.linkedin.com/company/semikolan/", 93 | }, 94 | { 95 | id: 14, 96 | Name: "UCD UPES", 97 | 98 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621701/community-partners/ucd_upes_oqog7s.png", 99 | linkedIn: "https://www.linkedin.com/company/ucd-upes/", 100 | }, 101 | { 102 | id: 15, 103 | Name: "IEDC MEC", 104 | 105 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621700/community-partners/iedc_mec_jracon.png", 106 | linkedIn: "https://www.linkedin.com/company/iedcmec/", 107 | }, 108 | { 109 | id: 16, 110 | Name: "Commudle", 111 | 112 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621699/community-partners/commudle_ibwkdb.png", 113 | linkedIn: "https://www.linkedin.com/company/commudle/", 114 | }, 115 | { 116 | id: 17, 117 | Name: "Technical Council IIT Bhubaneswar", 118 | 119 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621700/community-partners/Technical_council_IIT_Bhubaneswar_wnuj4m.png", 120 | linkedIn: "", 121 | }, 122 | { 123 | id: 18, 124 | Name: "Community Classroom", 125 | 126 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621699/community-partners/classroom_community_tq9lgu.png", 127 | linkedIn: "https://www.linkedin.com/company/commclassroom/", 128 | }, 129 | { 130 | id: 19, 131 | Name: "Programmers Universal Group", 132 | 133 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621700/community-partners/Programmers_Universal_Group_g6nlaj.png", 134 | linkedIn: "https://www.linkedin.com/company/pugroups/", 135 | }, 136 | { 137 | id: 20, 138 | Name: "SKEPSIS", 139 | 140 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621700/community-partners/skepsis_technical_committee_pzx4ox.png", 141 | linkedIn: "https://www.linkedin.com/company/skepsis-snu/", 142 | }, 143 | { 144 | id: 21, 145 | Name: "Banasthali Vidyapeeth", 146 | 147 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621699/community-partners/Banasthali_Vidyapeeth_fbwtmi.png", 148 | linkedIn: "", 149 | }, 150 | { 151 | id: 22, 152 | Name: "Basecamp Community", 153 | 154 | imgPath: "https://res.cloudinary.com/dke9xzbl6/image/upload/v1631621698/community-partners/Basecamp_Community_bb8fm1.png", 155 | linkedIn: "", 156 | }, 157 | ] 158 | 159 | export default CommunityData; 160 | -------------------------------------------------------------------------------- /src/components/Team/OutreachPartner.jsx: -------------------------------------------------------------------------------- 1 | const OutReachData = [ 2 | { 3 | id: 1, 4 | Name: 'Manisha Gupta', 5 | 6 | imgPath: 7 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649183/HackOdisha/photo_-_MANISHA_GUPTA_ioyohj.jpg', 8 | linkedIn: '', 9 | }, 10 | { 11 | id: 2, 12 | Name: 'Anubhab Patnaik', 13 | 14 | imgPath: 15 | 'https://res.cloudinary.com/nightfury/image/upload/v1631648985/HackOdisha/20210324_195644_-_Anubhab_Patnaik_ox01jd.jpg', 16 | linkedIn: '', 17 | }, 18 | { 19 | id: 3, 20 | Name: 'Vineet Ajmani', 21 | 22 | imgPath: 23 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649209/HackOdisha/photo_-_vineet_ajmani_hztohn.jpg', 24 | linkedIn: 'https://www.linkedin.com/in/vineet-ajmani01/', 25 | }, 26 | { 27 | id: 4, 28 | Name: 'Chandan Kumar Pradhan', 29 | 30 | imgPath: 31 | 'https://res.cloudinary.com/nightfury/image/upload/v1631648998/HackOdisha/Chandan_Kumar_Pradhan_-_CHANDAN_KUMAR_PRADHAN_drfvu0.jpg', 32 | linkedIn: '', 33 | }, 34 | { 35 | id: 5, 36 | Name: 'Harshit Aditya', 37 | 38 | imgPath: 39 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649296/HackOdisha/profilepic_-_Harshit_Aditya_jfa4ow.jpg', 40 | linkedIn: '', 41 | }, 42 | 43 | { 44 | id: 6, 45 | Name: 'Prabhav Khera', 46 | 47 | imgPath: 48 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649266/HackOdisha/Prabhav_Prefect_-_Prabhav_Khera_rng1wh.jpg', 49 | linkedIn: '', 50 | }, 51 | { 52 | id: 7, 53 | Name: 'Badal Jha', 54 | 55 | imgPath: 56 | 'https://res.cloudinary.com/nightfury/image/upload/v1631648987/HackOdisha/20210527_110419_-_White_Cloud_wqh0ri.png', 57 | linkedIn: '', 58 | }, 59 | { 60 | id: 8, 61 | Name: 'Khushi Yadav', 62 | 63 | imgPath: 64 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649015/HackOdisha/E1750672-FEDC-4C78-9AFC-405854935550_-_Khushi_Yadav_joeqcq.jpg', 65 | linkedIn: 'https://www.linkedin.com/in/khushi-yadav-559412202', 66 | }, 67 | { 68 | id: 9, 69 | Name: 'Roshan', 70 | 71 | imgPath: 72 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649079/HackOdisha/IMG_20201025_201419_754_-_Roshan_Anduri_akn7xc.jpg', 73 | linkedIn: '', 74 | }, 75 | { 76 | id: 10, 77 | Name: 'Ishita Kapoor', 78 | 79 | imgPath: 80 | 'https://res.cloudinary.com/nightfury/image/upload/v1631648991/HackOdisha/BeautyPlus_20190626140331702_save_-_Ishita_Kapoor_gj01hj.jpg', 81 | linkedIn: '', 82 | }, 83 | { 84 | id: 11, 85 | Name: 'Fawad Ahmad', 86 | 87 | imgPath: 88 | 'https://res.cloudinary.com/nightfury/image/upload/v1631648985/HackOdisha/1_-_FAWAD_AHMAD_dmj2ff.jpg', 89 | linkedIn: '', 90 | }, 91 | { 92 | id: 12, 93 | Name: 'Manasi Gharai', 94 | 95 | imgPath: 96 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649118/HackOdisha/IMG_20210123_142508_-_Manasi_Gharai_cxku6e.jpg', 97 | linkedIn: '', 98 | }, 99 | { 100 | id: 13, 101 | Name: 'Priyansha Nayak', 102 | 103 | imgPath: 104 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649038/HackOdisha/IMG20210726171001_-_PRIYANSHA_NAYAK_azusyw.jpg', 105 | linkedIn: '', 106 | }, 107 | { 108 | id: 14, 109 | Name: 'Sanyam Agrawal', 110 | 111 | imgPath: 112 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649098/HackOdisha/IMG_20210117_233234_074_-_Sanyam_Agrawal_w8qp5t.jpg', 113 | linkedIn: '', 114 | }, 115 | { 116 | id: 15, 117 | Name: 'Mrunank Pawar', 118 | 119 | imgPath: 120 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649005/HackOdisha/CNCF_Profile_pic_-_Mrunank_Pawar_l7toay.png', 121 | linkedIn: '', 122 | }, 123 | { 124 | id: 16, 125 | Name: 'Ayush Jha', 126 | 127 | imgPath: 128 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649141/HackOdisha/IMG_20210802_130946_-_Ayush_Jha_t06hcy.jpg', 129 | linkedIn: '', 130 | }, 131 | { 132 | id: 17, 133 | Name: 'Akash Mishra', 134 | 135 | imgPath: 136 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649380/HackOdisha/Screenshot_2021-08-03_204507_-_AKASH_MISHRA_tn91e3.png', 137 | linkedIn: '', 138 | }, 139 | { 140 | id: 18, 141 | Name: 'Reshab kumar sharma', 142 | 143 | imgPath: 144 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649329/HackOdisha/PXL_20210805_101744383.PORTRAIT_-_reshab_sharma_kgqlix.jpg', 145 | linkedIn: '', 146 | }, 147 | { 148 | id: 19, 149 | Name: 'Harshi Singhi', 150 | 151 | imgPath: 152 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649163/HackOdisha/InShot_20210517_184155576_-_Harshi_Singhi_odsem7.jpg', 153 | linkedIn: '', 154 | }, 155 | { 156 | id: 20, 157 | Name: 'Balram Jha', 158 | 159 | imgPath: 160 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649051/HackOdisha/IMG20210809125123_-_bkj_com_xcdhcv.jpg', 161 | linkedIn: '', 162 | }, 163 | { 164 | id: 21, 165 | Name: 'Abhay Majhi', 166 | 167 | imgPath: 168 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649352/HackOdisha/SAVE_20210115_223306_-_Abhay_Majhi_pxyqif.jpg', 169 | linkedIn: '', 170 | }, 171 | { 172 | id: 22, 173 | Name: 'Sriniketh J', 174 | 175 | imgPath: 176 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649236/HackOdisha/postspic_-_Sriniketh_J_wnkmo0.png', 177 | linkedIn: '', 178 | }, 179 | { 180 | id: 23, 181 | Name: 'Sonali sahu', 182 | 183 | imgPath: 184 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649431/HackOdisha/Sonali_-_Sonali_p0lbes.jpg', 185 | linkedIn: '', 186 | }, 187 | { 188 | id: 24, 189 | Name: 'Ratikanta Swain', 190 | 191 | imgPath: 192 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649406/HackOdisha/Snapchat-945069110_-_RATIKANTA_SWAIN_kplc07.jpg', 193 | linkedIn: '', 194 | }, 195 | { 196 | id: 25, 197 | Name: 'GIRIPRASATH.D', 198 | 199 | imgPath: 200 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649025/HackOdisha/GIRIPRASATH.D_-_GIRI_PRASATH.D_wikyod.jpg', 201 | linkedIn: '', 202 | }, 203 | { 204 | id: 26, 205 | Name: 'Akhilesh Khatri', 206 | 207 | imgPath: 208 | 'https://res.cloudinary.com/nightfury/image/upload/v1631649067/HackOdisha/IMG_20200621_131124_-_Akhilesh_Khatri_zwofu2.jpg', 209 | linkedIn: '', 210 | }, 211 | ]; 212 | 213 | export default OutReachData; 214 | -------------------------------------------------------------------------------- /src/components/Team/TeamData.js: -------------------------------------------------------------------------------- 1 | // Add organisors name within first 6 2 | const TeamData = [ 3 | { 4 | id: 1, 5 | Name: 'Aniket Pal', 6 | Role: 'Lead Organizer', 7 | imgPath: 8 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1628939607/webwiz-portfolio/team-images/team-webwiz/aniket%20pal.jpg', 9 | linkedIn: 'https://www.linkedin.com/in/aniket-pal/', 10 | }, 11 | { 12 | id: 2, 13 | Name: 'Sumana Basu', 14 | Role: 'Co-Lead Organizer', 15 | imgPath: 16 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693346/Hackodisha-Team/person_-_Sumana_Basu_xtt6xk.jpg', 17 | linkedIn: 'https://www.linkedin.com/in/sumana-basu/', 18 | }, 19 | { 20 | id: 3, 21 | Name: 'Kumar Shantanu', 22 | Role: 'Management Lead', 23 | imgPath: 24 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693318/Hackodisha-Team/kumar_shantanu_-_kumar_shantanu_fb9ilf.jpg', 25 | linkedIn: 'https://www.linkedin.com/in/kumar-shantanu01/', 26 | }, 27 | { 28 | id: 4, 29 | Name: 'Sai Sambhab Chaini', 30 | Role: 'Outreach Lead', 31 | imgPath: 32 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693324/Hackodisha-Team/IMG-20200329-WA0008_-_saisambhav_chaini_xxofde.jpg', 33 | linkedIn: 'https://www.linkedin.com/in/sai-sambhab-chaini-1a5877210', 34 | }, 35 | { 36 | id: 5, 37 | Name: 'Shreya Khetan', 38 | Role: 'Outreach Lead', 39 | imgPath: 40 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693427/Hackodisha-Team/WhatsApp_Image_2021-09-14_at_10.29.30_PM_-_saisambhav_chaini_g5jlao.jpg', 41 | linkedIn: 'https://www.linkedin.com/in/shreya-khetan-9b6255a8', 42 | }, 43 | { 44 | id: 6, 45 | Name: 'Manjeet Dhayal', 46 | Role: 'Sponsorship Lead', 47 | imgPath: 48 | 'https://res.cloudinary.com/manjeetdhayal/image/upload/v1631601856/Manjeet/IMG_20210911_112249_x9edqx.jpg', 49 | linkedIn: 'https://www.linkedin.com/in/manjeet-dhayal/', 50 | }, 51 | { 52 | id: 7, 53 | Name: 'Amreet Kumar Khuntia', 54 | Role: 'Tech Lead', 55 | imgPath: 56 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693191/Hackodisha-Team/Amreet_kumar_khuntia_2_-_Amreet_Ent_mmwaqn.png', 57 | linkedIn: 'https://www.linkedin.com/in/amreet-khuntia-15193220b/', 58 | }, 59 | { 60 | id: 8, 61 | Name: 'Rituraj Tripathy', 62 | Role: 'Design Lead', 63 | imgPath: 64 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631692861/Hackodisha-Team/PicsArt_09-14-10.09.41_-_Rituraj_Tripathy_vzjvwt.jpg', 65 | linkedIn: 'https://www.linkedin.com/in/rituraj-tripathy-a666aa20b', 66 | }, 67 | 68 | { 69 | id: 9, 70 | Name: 'Rohan Kumar Sethi', 71 | Role: 'Public Relations Lead', 72 | imgPath: 73 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693384/Hackodisha-Team/Rohan_Kumar_-_Rohan_Kumar_gwcfvk.jpg', 74 | linkedIn: 'https://www.linkedin.com/in/rohan-kumar-8068a41b8', 75 | }, 76 | { 77 | id: 10, 78 | Name: 'Sanjeet Patro', 79 | Role: 'Public Relations Lead', 80 | imgPath: 81 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693236/Hackodisha-Team/IMG_20210716_123431_-_Sanjeet_Patro_a1c1qi.jpg', 82 | linkedIn: 'https://www.linkedin.com/in/sanjeet-patro-6a1067202/', 83 | }, 84 | { 85 | id: 11, 86 | Name: 'Satyajit Panda', 87 | Role: 'Content Lead', 88 | imgPath: 89 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693385/Hackodisha-Team/SAVE_20210320_140941_-_Satyajit_Panda_b0xmsa.jpg', 90 | linkedIn: 'https://www.linkedin.com/in/satyajit-panda-b824381a9', 91 | }, 92 | { 93 | id: 12, 94 | Name: 'Unagallage Nirmal Chathura Unagalle', 95 | linkedIn: 'https://www.linkedin.com/in/nirmal-chathura/', 96 | imgPath: 97 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693344/Hackodisha-Team/Nirmal_Chathura_-_Nirmal_C_sffbdo.jpg', 98 | Role: 'Tech Team', 99 | }, 100 | { 101 | id: 13, 102 | Name: 'Chirra Anshu Teja', 103 | linkedIn: 'https://www.linkedin.com/in/anshu-teja-chirra-72a687215', 104 | imgPath: 105 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693351/Hackodisha-Team/photo_-_Anshu_Teja_Chirra_cpyalv.jpg', 106 | Role: 'Publicity Team', 107 | }, 108 | { 109 | id: 14, 110 | Name: 'Midatana Sai Praneetha', 111 | linkedIn: 'https://www.linkedin.com/in/midatana-sai-praneetha-9a587420b/', 112 | imgPath: 113 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693380/Hackodisha-Team/Profile_-_Sai_Praneetha_p4vdto.jpg', 114 | Role: 'Publicity Team', 115 | }, 116 | { 117 | id: 15, 118 | Name: 'Sayambika Das', 119 | linkedIn: 'https://www.linkedin.com/in/sayambika-das-398666203', 120 | imgPath: 121 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693409/Hackodisha-Team/Screenshot_2021-09-14-20-19-57-73_99c04817c0de5652397fc8b56c3b3817_-_Sayambika_Das_uieje2.jpg', 122 | Role: 'Publicity Team', 123 | }, 124 | { 125 | id: 16, 126 | Name: 'Gourab Nanda', 127 | linkedIn: 'https://www.linkedin.com/in/gourab-nanda-0b27aa173/', 128 | imgPath: 129 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693200/Hackodisha-Team/gourab_nanda_2021_-_Gourab_Nanda_ncmbvu.jpg', 130 | Role: 'Publicity Team', 131 | }, 132 | { 133 | id: 17, 134 | Name: 'Insha Mustafa ', 135 | linkedIn: 'https://www.linkedin.com/in/insha-mustafa-5b4965200/', 136 | imgPath: 137 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631692347/Hackodisha-Team/Insha_Mustafa.jpg', 138 | Role: 'Publicity Team', 139 | }, 140 | { 141 | id: 18, 142 | Name: 'Abhishek Ranjan Prusty', 143 | linkedIn: 'https://www.linkedin.com/in/abhishek-ranjan-2002/', 144 | imgPath: 145 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693179/Hackodisha-Team/20210103_162858_-_abhishek_ranjan_prusty_cvhuyh.jpg', 146 | Role: 'Publicity Team', 147 | }, 148 | { 149 | id: 19, 150 | Name: 'Lakshmi Haritha', 151 | linkedIn: 'https://www.linkedin.com/in/lakshmi-haritha-annadanam-4b8632201', 152 | imgPath: 153 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693314/Hackodisha-Team/IMG-20210914-WA0070__01_-_Haritha_Haritha_wrusr8.jpg', 154 | Role: 'Outreach Team', 155 | }, 156 | { 157 | id: 20, 158 | Name: 'Krishna Agrawal', 159 | linkedIn: 'https://www.linkedin.com/in/krishna-agrawal-6370b3218', 160 | imgPath: 161 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693235/Hackodisha-Team/IMG_20201229_112653-min_-_Krishna_Agrawal_kdjikg.jpg', 162 | Role: 'Sponsorship Team', 163 | }, 164 | { 165 | id: 21, 166 | Name: 'Aporanta Mukhopadhyay', 167 | linkedIn: 'https://www.linkedin.com/in/aporanta-mukhopadhyay-744892210', 168 | imgPath: 169 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693231/Hackodisha-Team/IMG_20201020_225126_1_-_Aporanta_Mukhopadhyay_pwpmyj.jpg', 170 | Role: 'Sponsorship Team', 171 | }, 172 | 173 | { 174 | id: 22, 175 | Name: 'Swagat Raj', 176 | linkedIn: 'https://www.linkedin.com/mwlite/in/swagat-raj-8924691b7', 177 | imgPath: 178 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693274/Hackodisha-Team/IMG_20210724_215032_008_2_-_Swagat_Raj_zgjxdp.jpg', 179 | Role: 'Design Team', 180 | }, 181 | { 182 | id: 23, 183 | Name: 'Sai Ashish', 184 | linkedIn: 'https://www.linkedin.com/in/sai-ashish-anshuman-5b4007194/', 185 | imgPath: 186 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693431/Hackodisha-Team/WhatsApp_Image_2021-09-15_at_11.57.09_AM_-_Sai_Ashish_jjgwne.jpg', 187 | Role: 'Design Team ', 188 | }, 189 | { 190 | id: 24, 191 | Name: 'Ankush Kumar Lohani', 192 | linkedIn: 'https://www.linkedin.com/in/iamakl', 193 | imgPath: 194 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693411/Hackodisha-Team/WhatsApp_Image_2021-07-26_at_1.44.28_AM_-_Ankush_Lohani_khkylq.jpg', 195 | Role: 'Outreach Team', 196 | }, 197 | { 198 | id: 25, 199 | Name: 'Awantika Mallick', 200 | linkedIn: 'https://www.linkedin.com/in/awantika-mallick-33ab40207/', 201 | imgPath: 202 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693193/Hackodisha-Team/Awantika_Mallick_-_awantika_mallick_cgqwoe.jpg', 203 | Role: 'Outreach Team', 204 | }, 205 | { 206 | id: 26, 207 | Name: 'Komal Deegwal', 208 | linkedIn: 'https://www.linkedin.com/in/komal-deegwal-35b31a206', 209 | imgPath: 210 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693429/Hackodisha-Team/WhatsApp_Image_2021-09-15_at_11.16.16_-_Sumana_Basu_x5g5rs.jpg', 211 | Role: 'Outreach Team', 212 | }, 213 | { 214 | id: 27, 215 | Name: 'Sayantan Chatterjee', 216 | linkedIn: 'https://www.linkedin.com/in/sayantan-chatterjee-400784208/', 217 | imgPath: 218 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693398/Hackodisha-Team/Screenshot_2021-04-18_at_9.19.03_PM_-_Sayantan_Ch_ba5zdi.png', 219 | Role: 'Outreach Team', 220 | }, 221 | { 222 | id: 28, 223 | Name: 'Pratika Mishra', 224 | linkedIn: 'https://www.linkedin.com/in/pratika-mishra-400b39198', 225 | imgPath: 226 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631697209/Hackodisha-Team/IMG_20210801_141239_-_PRATIKA_MISHRA_1_wxwn6o.jpg', 227 | Role: 'Outreach Team', 228 | }, 229 | { 230 | id: 29, 231 | Name: 'Priti Kumari', 232 | linkedIn: 'https://www.linkedin.com/in/priti-kumari-1b47a1203', 233 | imgPath: 234 | 'https://res.cloudinary.com/webwiznitr/image/upload/v1631693312/Hackodisha-Team/IMG-20210826-WA0232_-_Priti_Kumari_cpnzkz.jpg', 235 | Role: 'Outreach Team', 236 | }, 237 | ]; 238 | 239 | export default TeamData; 240 | -------------------------------------------------------------------------------- /src/components/Team/team.scss: -------------------------------------------------------------------------------- 1 | #team-section { 2 | color: white; 3 | font-size: 4rem; 4 | padding: 20px; 5 | } 6 | #member-card { 7 | display: flex; 8 | flex-direction: column; 9 | justify-content: center; 10 | align-items: center; 11 | min-height: 350px; 12 | height: 350px; 13 | min-width: 300px; 14 | width: 300px; 15 | color: white; 16 | margin: 10px; 17 | 18 | #team-image { 19 | object-fit: cover; 20 | height: 200px; 21 | width: 200px; 22 | border-radius: 50%; 23 | border-left: 4px solid black; 24 | border-right: 4px solid black; 25 | border-bottom: 4px solid rgb(255, 0, 0); 26 | 27 | &:hover { 28 | border-top: 4px solid red; 29 | border-left: 4px solid black; 30 | border-right: 4px solid black; 31 | border-bottom: 4px solid white; 32 | } 33 | } 34 | 35 | #member-image { 36 | height: 200px; 37 | width: 200px; 38 | border-radius: 50%; 39 | border-left: 4px solid black; 40 | border-right: 4px solid black; 41 | border-bottom: 4px solid rgb(255, 0, 0); 42 | 43 | &:hover { 44 | border-top: 4px solid red; 45 | border-left: 4px solid black; 46 | border-right: 4px solid black; 47 | border-bottom: 4px solid white; 48 | } 49 | } 50 | 51 | #member-name { 52 | color: rgba(255, 0, 0, 0.952); 53 | font-size: 26px; 54 | font-weight: 500; 55 | border-bottom: 2px solid rgba(255, 255, 255, 0.52); 56 | } 57 | 58 | #member-role { 59 | color: rgb(255, 255, 255); 60 | font-size: 20px; 61 | } 62 | } 63 | 64 | #team-button { 65 | border: 0; 66 | outline: 0; 67 | padding: 8px 1em; 68 | color: #fff; 69 | font-size: 18px; 70 | font-weight: 600; 71 | text-decoration: none; 72 | border-radius: 20px; 73 | background-color: #18191a; 74 | border: 2px solid #ff0000; 75 | transition: all 240ms ease-in-out; 76 | cursor: pointer; 77 | &:hover { 78 | color: #000; 79 | background-color: #ff0000; 80 | } 81 | 82 | &:not(:last-of-type) { 83 | margin-right: 7px; 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /src/components/Team/teamHackodisha.jsx: -------------------------------------------------------------------------------- 1 | import React, {useEffect} from 'react' 2 | import Raisebox from '../raisebox/raisebox'; 3 | import styled from 'styled-components'; 4 | import TeamData from './TeamData'; 5 | import CommunityData from './CommunityPartner'; 6 | import OutReachData from './OutreachPartner'; 7 | import './team.scss' 8 | 9 | const TeamGrid = styled.div` 10 | display: grid; 11 | grid-template-columns: 1fr 1fr 1fr 1fr; 12 | justify-items: center; 13 | min-width: 100%; 14 | min-height: 100%; 15 | height: 100%; 16 | margin-bottom: 100px; 17 | 18 | 19 | Background-color: transparent; 20 | 21 | @media screen and (max-width: 1500px) { 22 | grid-template-columns: 1fr 1fr 1fr; 23 | } 24 | 25 | @media screen and (max-width: 1000px) { 26 | grid-template-columns: 1fr 1fr; 27 | } 28 | 29 | @media screen and (max-width: 680px) { 30 | grid-template-columns: 1fr; 31 | } 32 | `; 33 | 34 | 35 | 36 | const TeamHackodisha = () => { 37 | useEffect(() => { 38 | window.scrollTo(0, 0) 39 | }, []) 40 | return ( 41 |
42 | 43 | {/* hackodisha team */} 44 | 45 |

Team

46 | 47 | { 48 | TeamData.map(element => { 49 | return ( 50 |
51 |  not found 52 | {element.Name} 53 | {element.Role} 54 | 55 |
56 | ) 57 | }) 58 | } 59 |
60 | 61 |
62 | 63 | {/* community partners */} 64 | 65 |

Community Partners

66 | 67 | { 68 | CommunityData.map(element => { 69 | return ( 70 |
71 |  not found 72 | {element.Name} 73 | 74 | 75 |
76 | ) 77 | }) 78 | } 79 |
80 | 81 |
82 | 83 | {/* Outreach partners */} 84 | 85 | 86 |

Outreach Partners

87 | 88 | { 89 | OutReachData.map(element => { 90 | return ( 91 |
92 |  not found 93 | {element.Name} 99 |
100 | ) 101 | }) 102 | } 103 |
104 | 105 |
106 |
107 | 108 | ) 109 | } 110 | 111 | export default TeamHackodisha; -------------------------------------------------------------------------------- /src/components/card.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import styled from "styled-components"; 3 | 4 | const CenteredAnchor = styled.a` 5 | display: flex; 6 | flex-direction: column; 7 | justify-content: center; 8 | align-items: center; 9 | `; 10 | 11 | export default function MediaCard(props) { 12 | return ( 13 | 14 | {props.alt} 20 | 21 | ); 22 | } 23 | -------------------------------------------------------------------------------- /src/components/footer/footer.css: -------------------------------------------------------------------------------- 1 | .social-link:hover { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/footer/footer.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { FaFacebook, FaInstagram, FaTwitter, FaLinkedin } from 'react-icons/fa'; 3 | import { 4 | FooterContainer, 5 | SocialMedia, 6 | SocialMediaWrap, 7 | WebsiteRights, 8 | SocialIcons, 9 | SocialIconLink, 10 | } from './footerElement'; 11 | import './footer.css'; 12 | 13 | function Footer() { 14 | return ( 15 | 16 | 17 | 18 | 19 | Hack Odisha © {new Date().getFullYear()} All rights reserved. 20 | 21 | 22 | 29 | 30 | 31 | 38 | 39 | 40 | 47 | 48 | 49 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | ); 63 | } 64 | 65 | export default Footer; 66 | -------------------------------------------------------------------------------- /src/components/footer/footerElement.js: -------------------------------------------------------------------------------- 1 | import styled from "styled-components"; 2 | 3 | export const WebsiteRights = styled.p` 4 | color: #fff; 5 | 6 | margin-bottom: 16px; 7 | `; 8 | 9 | export const FooterContainer = styled.div` 10 | background-color: transparent; 11 | display: flex; 12 | flex-direction: column; 13 | justify-content: center; 14 | align-items: center; 15 | `; 16 | 17 | export const SocialMedia = styled.section` 18 | max-width: 1000px; 19 | width: 100%; 20 | `; 21 | 22 | export const SocialMediaWrap = styled.div` 23 | display: flex; 24 | justify-content: space-between; 25 | align-items: center; 26 | width: 80%; 27 | max-width: 1000px; 28 | margin: 10px auto 0 auto; 29 | @media screen and (max-width: 820px) { 30 | flex-direction: column; 31 | width: 90%; 32 | } 33 | `; 34 | 35 | export const SocialIcons = styled.div` 36 | display: flex; 37 | justify-content: space-between; 38 | align-items: center; 39 | width: 240px; 40 | `; 41 | 42 | export const SocialIconLink = styled.a` 43 | color: #fff; 44 | font-size: 24px; 45 | `; 46 | -------------------------------------------------------------------------------- /src/components/home-cards/HomeCard.css: -------------------------------------------------------------------------------- 1 | .btn-knowmore { 2 | background-color: #9e3737; 3 | background-color:#c62d1f; 4 | border-radius:18px; 5 | border:1px solid #d02718; 6 | display:inline-block; 7 | cursor:pointer; 8 | color:#ffffff; 9 | font-family:Arial; 10 | font-size:10px; 11 | padding:7px 25px; 12 | text-decoration:none; 13 | text-shadow:0px 1px 0px #810e05; 14 | } 15 | 16 | .btn-container { 17 | position: absolute; 18 | left: 50%; 19 | top: 93%; 20 | transform: translate(-50%, -50%); 21 | } 22 | 23 | .TracksCards{ 24 | background: #242526; 25 | box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); 26 | transition: 0.3s; 27 | padding: 1em; 28 | border-radius: 10px; 29 | max-width: 30rem; 30 | margin: 10px auto; 31 | height: auto; 32 | min-height: 10rem; 33 | display: flex; 34 | flex-direction: column; 35 | justify-content: space-evenly; 36 | } 37 | 38 | .CardIcon{ 39 | height: 2.5em; 40 | width: 2.5em; 41 | border-radius: 50%; 42 | } 43 | 44 | .Tracksh4{ 45 | font-weight: 600; 46 | text-align: left; 47 | margin-top: 1em; 48 | font-size: 1.3rem; 49 | color: #fff; 50 | } -------------------------------------------------------------------------------- /src/components/home-cards/HomeCard.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import TracksCards from "./HomeCardElement"; 3 | import { Row, Col } from "react-grid-system"; 4 | import './HomeCard.css'; 5 | 6 | 7 | function TracksCard(){ 8 | return ( 9 |
10 | 11 | 12 | 19 | 20 | 21 | 28 | 29 | 30 | 37 | 38 | 39 | 46 | 47 | 48 | 55 | 56 | 57 | 64 | 65 | 66 |
67 | ); 68 | } 69 | 70 | export default TracksCard; 71 | -------------------------------------------------------------------------------- /src/components/home-cards/HomeCardElement.js: -------------------------------------------------------------------------------- 1 | import { React, useState } from "react"; 2 | import "./HomeCard.css"; 3 | import Modal from 'react-modal'; 4 | 5 | const customStyles = { 6 | content: { 7 | top: '50%', 8 | left: '50%', 9 | right: 'auto', 10 | bottom: 'auto', 11 | marginRight: '-50%', 12 | transform: 'translate(-50%, -50%)', 13 | background: 'none', 14 | border: 'none', 15 | }, 16 | overlay:{ 17 | top: 0, 18 | left: 0, 19 | right: 0, 20 | bottom: 0, 21 | background:'rgba(0, 0, 0, 0.5)', 22 | backdropFilter: 'blur(5px)', 23 | opacity: 1, 24 | } 25 | }; 26 | 27 | function TracksCards(props) { 28 | let subtitle; 29 | const [modalIsOpen, setIsOpen] = useState(false); 30 | 31 | function openModal() { 32 | setIsOpen(true); 33 | } 34 | 35 | function afterOpenModal() { 36 | subtitle.style.color = '#fff'; 37 | } 38 | 39 | function closeModal() { 40 | setIsOpen(false); 41 | } 42 | return ( 43 |
44 |
45 |
46 | {props.alt} 51 |
52 |
53 | {props.trackname} 54 |
55 |
56 | 57 |
58 |
59 | 66 |
(subtitle = _subtitle)}> 67 | {props.description} 68 |
69 |
70 | 71 |
72 |
73 |
74 | ); 75 | 76 | } 77 | 78 | export default TracksCards; 79 | -------------------------------------------------------------------------------- /src/components/home-cards/TracksData.jsx: -------------------------------------------------------------------------------- 1 | const TrackData = [ 2 | { 3 | id:1, 4 | name: "Health", 5 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627814916/Assets/Icons/health_cvcmoc.webp', 6 | alt:"health_track", 7 | className="CardIcon", 8 | info: "Health" 9 | }, 10 | { 11 | id:2, 12 | name:"Education", 13 | image:'https://res.cloudinary.com/webwiznitr/image/upload/v1627814918/Assets/Icons/education_bk2lfd.webp', 14 | alt:"education_track", 15 | className="CardIcon", 16 | info:"Education" 17 | }, 18 | { 19 | id:3, 20 | name:"Environment", 21 | image:'https://res.cloudinary.com/webwiznitr/image/upload/v1627814918/Assets/Icons/environment_h376jc.webp', 22 | alt:"environment_track", 23 | className:"CardIcon", 24 | info: "Environment" 25 | }, 26 | { 27 | id:4, 28 | name:"Women Safety", 29 | image:'https://res.cloudinary.com/webwiznitr/image/upload/v1627814918/Assets/Icons/security_nz146a.webp', 30 | alt:"safety_track", 31 | className="CardIcon", 32 | info: "Women Safety" 33 | }, 34 | { 35 | id:5, 36 | name:"Disaster Management", 37 | image:'https://res.cloudinary.com/webwiznitr/image/upload/v1627814918/Assets/Icons/disaster_xnuswa.webp', 38 | alt:"disaster_track", 39 | className:"CardIcon", 40 | info: "Disaster" 41 | }, 42 | { 43 | id:6, 44 | name:"Open Innovation", 45 | image:'https://res.cloudinary.com/webwiznitr/image/upload/v1627814918/Assets/Icons/open_ku9tav.webp', 46 | alt:"open_track", 47 | className:"tracks_icon", 48 | info: "opens" 49 | }, 50 | 51 | ]; 52 | -------------------------------------------------------------------------------- /src/components/logo/index.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import styled from "styled-components"; 3 | 4 | const LogoWrapper = styled.div` 5 | display: flex; 6 | align-items: center; 7 | `; 8 | 9 | const LogoText = styled.h1` 10 | color: #fff; 11 | `; 12 | 13 | export function Logo(props) { 14 | return ( 15 | 16 | 17 | 18 | HO. 19 | 20 | 21 | 22 | ); 23 | } 24 | -------------------------------------------------------------------------------- /src/components/navbar/accessibility.jsx: -------------------------------------------------------------------------------- 1 | // import React from "react"; 2 | // import styled from "styled-components"; 3 | 4 | // const AccessibilityContainer = styled.div` 5 | // display: flex; 6 | // margin-left: 10px; 7 | // `; 8 | 9 | // const Button = styled.button` 10 | // border: 0; 11 | // outline: 0; 12 | // padding: 8px 1em; 13 | // color: #fff; 14 | // font-size: 18px; 15 | // font-weight: 600; 16 | // border-radius: 20px; 17 | // background-color: transparent; 18 | // border: 2px solid #ff0000; 19 | // transition: all 240ms ease-in-out; 20 | // cursor: pointer; 21 | 22 | // &:hover { 23 | // color: #000; 24 | // background-color: #ff0000; 25 | // } 26 | 27 | // &:not(:last-of-type) { 28 | // margin-right: 7px; 29 | // } 30 | // `; 31 | 32 | // class Accessibility extends React.Component { 33 | 34 | // render() { 35 | // return ( 36 | //
37 | // 38 | // 44 | // 45 | //
46 | // ); 47 | // } 48 | // } 49 | 50 | // export default Accessibility; 51 | -------------------------------------------------------------------------------- /src/components/navbar/index.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { useMediaQuery } from "react-responsive"; 3 | import styled from "styled-components"; 4 | import { Logo } from "../logo"; 5 | // import Accessibility from "./accessibility"; 6 | import { NavLinks } from "./navLinks"; 7 | import { DeviceSize } from "../responsive"; 8 | import { MobileNavLinks } from "./mobileNavLinks"; 9 | 10 | const NavbarContainer = styled.header` 11 | width: 100%; 12 | height: 60px; 13 | box-shadow: 0 1px 3px rgba(15, 15, 15, 0.13); 14 | display: flex; 15 | align-items: center; 16 | padding: 0 1.5em; 17 | justify-content: center; 18 | font-size: 1rem; 19 | position: sticky; 20 | top: 0; 21 | z-index: 10; 22 | background: #242526; 23 | 24 | @media screen and (max-width: 960px) { 25 | transition: 0.8s all ease; 26 | } 27 | `; 28 | 29 | const LeftSection = styled.div` 30 | display: flex; 31 | `; 32 | 33 | const MiddleSection = styled.div` 34 | display: flex; 35 | flex: 2; 36 | height: 100%; 37 | justify-content: center; 38 | `; 39 | 40 | const RightSection = styled.div` 41 | display: flex; 42 | `; 43 | 44 | export function Navbar(props) { 45 | const isMobile = useMediaQuery({ maxWidth: DeviceSize.tablet }); 46 | 47 | return ( 48 | 49 | 50 | 51 | 52 | {!isMobile && } 53 | 54 | {/* {!isMobile && } */} 55 | {isMobile && } 56 | 57 | 58 | ); 59 | } 60 | -------------------------------------------------------------------------------- /src/components/navbar/menuToggle.jsx: -------------------------------------------------------------------------------- 1 | import { motion } from "framer-motion"; 2 | import React from "react"; 3 | import styled from "styled-components"; 4 | 5 | const Button = styled.div` 6 | z-index: 99; 7 | cursor: pointer; 8 | `; 9 | 10 | const Path = (props) => ( 11 | 17 | ); 18 | 19 | const transition = { duration: 0.33 }; 20 | 21 | export function MenuToggle({ toggle, isOpen }) { 22 | return ( 23 | 59 | ); 60 | } 61 | -------------------------------------------------------------------------------- /src/components/navbar/mobileNavLinks.jsx: -------------------------------------------------------------------------------- 1 | import React, { useState } from "react"; 2 | import styled from "styled-components"; 3 | // import Accessibility from "./accessibility"; 4 | import { MenuToggle } from "./menuToggle"; 5 | 6 | const NavLinksContainer = styled.nav` 7 | height: 100%; 8 | display: flex; 9 | align-items: center; 10 | position: sticky; 11 | top: 0; 12 | `; 13 | 14 | const LinksWrapper = styled.ul` 15 | margin: 0; 16 | padding: 10px; 17 | display: flex; 18 | height: 100%; 19 | list-style: none; 20 | background-color: black; 21 | opacity: 0.8; 22 | width: 100%; 23 | flex-direction: column; 24 | position: fixed; 25 | top: 50px; 26 | left: 0; 27 | `; 28 | 29 | const LinkItem = styled.li` 30 | width: 100%; 31 | padding: 0 1.1em; 32 | padding-top: 10px; 33 | color: #fff; 34 | font-weight: 500; 35 | font-size: 18px; 36 | display: flex; 37 | `; 38 | 39 | const Link = styled.a` 40 | text-decoration: none; 41 | color: inherit; 42 | font-size: inherit; 43 | cursor: pointer; 44 | position: relative; 45 | text-transform: capitalize; 46 | 47 | &::after { 48 | position: absolute; 49 | content: ""; 50 | bottom: 0; 51 | left: 0; 52 | width: 100%; 53 | height: 2px; 54 | background-color: #f00; 55 | transform: scaleY(0); 56 | transition: transform 0.3s; 57 | transform-origin: 50% 100%; 58 | } 59 | 60 | &:hover::after { 61 | transform: scaleY(1); 62 | } 63 | `; 64 | const Marginer = styled.div` 65 | height: 2em; 66 | `; 67 | 68 | export function MobileNavLinks() { 69 | const [isOpen, setOpen] = useState(false); 70 | const links = [ 71 | "home", 72 | "about", 73 | "tracks", 74 | "sponsors", 75 | "schedule", 76 | // "speakers", 77 | "prizes", 78 | "events", 79 | "team", 80 | "faq", 81 | ]; 82 | return ( 83 | 84 | setOpen(!isOpen)} /> 85 | {isOpen && ( 86 | 87 | {links.map((link) => { 88 | return ( 89 | 90 | setOpen(false)}> 91 | {link} 92 | 93 | 94 | ); 95 | })} 96 | 97 | {/* */} 98 | 99 | )} 100 | 101 | ); 102 | } 103 | -------------------------------------------------------------------------------- /src/components/navbar/navLinks.jsx: -------------------------------------------------------------------------------- 1 | import React, {useState} from "react"; 2 | import styled from "styled-components"; 3 | 4 | const NavLinksContainer = styled.nav` 5 | height: 100%; 6 | display: flex; 7 | align-items: center; 8 | `; 9 | 10 | const LinksWrapper = styled.ul` 11 | margin: 0; 12 | padding: 0; 13 | display: flex; 14 | height: 100%; 15 | list-style: none; 16 | `; 17 | 18 | const LinkItem = styled.li` 19 | height: 100%; 20 | padding: 0 1.1em; 21 | color: #fff; 22 | font-weight: 500; 23 | font-size: 18px; 24 | align-items: center; 25 | justify-content: center; 26 | display: flex; 27 | position: relative; 28 | 29 | &::after { 30 | position: absolute; 31 | content: ""; 32 | bottom: 0; 33 | left: 0; 34 | width: 100%; 35 | height: 4px; 36 | background-color: #f00; 37 | transform: scaleY(0); 38 | transition: transform 0.3s; 39 | transform-origin: 50% 100%; 40 | } 41 | 42 | &:hover::after { 43 | transform: scaleY(1); 44 | } 45 | `; 46 | 47 | /* 48 | Kind of messy, but create another styled component without transition 49 | 50 | */ 51 | const ActiveLink = styled.li` 52 | height: 100%; 53 | padding: 0 1.1em; 54 | color: #fff; 55 | font-weight: 500; 56 | font-size: 18px; 57 | align-items: center; 58 | justify-content: center; 59 | display: flex; 60 | position: relative; 61 | 62 | &::after { 63 | position: absolute; 64 | content: ""; 65 | bottom: 0; 66 | left: 0; 67 | width: 100%; 68 | height: 4px; 69 | background-color: #f00; 70 | 71 | } 72 | 73 | &:hover::after { 74 | transform: scaleY(1); 75 | } 76 | `; 77 | 78 | const Link = styled.a` 79 | text-decoration: none; 80 | color: inherit; 81 | font-size: inherit; 82 | cursor: pointer; 83 | text-transform: capitalize; 84 | `; 85 | 86 | export function NavLinks() { 87 | // setLocation when user clicks on link, default location is window.location.hash 88 | const [location, setLocation] = useState(window.location.hash) 89 | const links = [ 90 | "home", 91 | "about", 92 | "tracks", 93 | "sponsors", 94 | "schedule", 95 | // "speakers", 96 | "prizes", 97 | "events", 98 | "team", 99 | "faq", 100 | ]; 101 | 102 | // Conditionally render either the 'active' link or the regular link depending on location 103 | const renderLinks = () => { 104 | return links.map(link => { 105 | let hash = '#' + link 106 | if (location === hash) { 107 | return ( 108 | 109 | {link} 110 | 111 | ) 112 | } else { 113 | return ( 114 | setLocation(hash)}> 115 | {link} 116 | 117 | ) 118 | } 119 | }) 120 | } 121 | 122 | return ( 123 | 124 | 125 | {renderLinks()} 126 | 127 | 128 | ); 129 | } -------------------------------------------------------------------------------- /src/components/prizes-card/PrizesCard.css: -------------------------------------------------------------------------------- 1 | .btn-knowmore { 2 | background-color: #9e3737; 3 | background-color:#c62d1f; 4 | border-radius:18px; 5 | border:1px solid #d02718; 6 | display:inline-block; 7 | cursor:pointer; 8 | color:#ffffff; 9 | font-family:Arial; 10 | font-size:14px; 11 | padding:7px 25px; 12 | text-decoration:none; 13 | text-shadow:0px 1px 0px #810e05; 14 | position: relative; 15 | } 16 | 17 | .TracksCards_p{ 18 | background: #242526; 19 | box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); 20 | transition: 0.3s; 21 | padding: 1em; 22 | border-radius: 10px; 23 | max-width: 30rem; 24 | margin: 10px auto; 25 | height: auto; 26 | min-height: 10rem; 27 | max-height: 70vh; 28 | display: flex; 29 | overflow-y:scroll; 30 | flex-direction: column; 31 | } 32 | .TracksCards_p::-webkit-scrollbar { 33 | width: 7px; 34 | 35 | } 36 | .TracksCards_p::-webkit-scrollbar-track { 37 | background-color: #242526; 38 | visibility: hidden; 39 | } 40 | .TracksCards_p::-webkit-scrollbar-thumb { 41 | background-color: hsla(0,0%,100%,0.4); 42 | border-radius: 20px; 43 | } 44 | 45 | 46 | .CardIcon{ 47 | height: 2.5em; 48 | width: 2.5em; 49 | border-radius: 50%; 50 | } 51 | 52 | .Tracksh4{ 53 | font-weight: 600; 54 | text-align: left; 55 | margin-top: 1em; 56 | font-size: 1.3rem; 57 | color: #fff; 58 | } -------------------------------------------------------------------------------- /src/components/prizes-card/PrizesCard.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import PrizesCardElement from './PrizesCardElement'; 3 | import { Row, Col } from 'react-grid-system'; 4 | import './PrizesCard.css'; 5 | import prizesData from './PrizesData'; 6 | 7 | function PrizesCard() { 8 | return ( 9 |
10 | 11 | 12 | 17 | 18 | 19 | 24 | 25 | 26 | 31 | 32 | 33 | 38 | 39 | 40 | 45 | 46 | 47 | 52 | 53 | 54 | 59 | 60 | 61 | 66 | 67 | 68 | 73 | 74 | 75 | 80 | 81 | 82 | 87 | 88 | 89 |
90 | ); 91 | } 92 | 93 | export default PrizesCard; 94 | -------------------------------------------------------------------------------- /src/components/prizes-card/PrizesCardElement.js: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | import { useState } from 'react'; 3 | import './PrizesCard.css'; 4 | import Modal from 'react-modal'; 5 | 6 | const customStyles = { 7 | content: { 8 | top: '50%', 9 | left: '50%', 10 | right: 'auto', 11 | bottom: 'auto', 12 | marginRight: '-50%', 13 | transform: 'translate(-50%, -50%)', 14 | background: 'none', 15 | border: 'none', 16 | }, 17 | overlay: { 18 | top: 0, 19 | left: 0, 20 | right: 0, 21 | bottom: 0, 22 | background: 'rgba(0, 0, 0, 0.5)', 23 | backdropFilter: 'blur(5px)', 24 | opacity: 1, 25 | }, 26 | }; 27 | 28 | function PrizesCardElement(props) { 29 | let subtitle; 30 | const [modalIsOpen, setIsOpen] = useState(false); 31 | 32 | function openModal() { 33 | setIsOpen(true); 34 | } 35 | 36 | function afterOpenModal() { 37 | subtitle.style.color = '#fff'; 38 | } 39 | 40 | function closeModal() { 41 | setIsOpen(false); 42 | } 43 | 44 | return ( 45 |
46 |
47 |
{props.trackname}
48 | {/*
49 | 52 |
*/} 53 |
54 | 61 |
(subtitle = _subtitle)} 64 | > 65 | 66 | {props.description} 67 | 68 |
69 |
70 | 73 |
74 |
75 |
76 | ); 77 | } 78 | 79 | export default PrizesCardElement; 80 | -------------------------------------------------------------------------------- /src/components/prizes-card/PrizesData.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | const prizesData = [ 3 | { 4 | id: 1, 5 | description: ( 6 |
7 | Cash Prize*
8 | T-shirt
9 | Stickers 10 |
11 | $1000 digital Ocean credits
12 | HoverRobotix gift vochure worth ₹20k
13 | Custom XYZ domain for 1 year 14 |
15 | Interview Buddy discount vochures
16 | Taskade lifetime access
17 | Coding Block Vouchers 18 |
19 | Replit 90 days trail 20 |
21 | Script Foundation Academy 90 days premium access 22 |
23 | 1Password access for 1 year
24 | 12 months Framer subscription 25 |
26 | Access to Wolfarm for 30 days 27 |
28 | Qoom 3 months starter plan 29 |
30 | Showcase on Qoom's gallery 31 |
32 | Draftbit 40% off for 1 year 33 |
34 | Balsamic 90 days extended trail 35 |
36 | Axure access 37 |
38 | Rosenfeld Media free book giveaways on their site 39 |
40 | ebook(40$) benefits from No Starch Press 41 |
42 | Free Individual licenses to all Jetbrains desktop tools for limited time 43 |
44 |
45 | ), 46 | }, 47 | { 48 | id: 2, 49 | description: ( 50 |
51 | Cash Prize*
52 | T-shirt
53 | Stickers 54 |
55 | $600 digital Ocean credits
56 | HoverRobotix gift vochure worth ₹10k
57 | Custom XYZ domain for 1 year 58 |
59 | Interview Buddy discount vochures
60 | Taskade lifetime access
61 | Coding Block Vouchers 62 |
63 | Script Foundation Academy 90 days premium access 64 |
65 | 1Password access for 1 year
66 | 12 months Framer subscription 67 |
68 | Replit 90 days trail 69 |
70 | Access to Wolfarm for 30 days 71 |
72 | Qoom 3 months starter plan 73 |
74 | Showcase on Qoom's gallery 75 |
76 | Draftbit 40% off for 1 year 77 |
78 | Balsamic 90 days extended trail 79 |
80 | Axure access 81 |
82 | Rosenfeld Media free book giveaways on their site 83 |
84 | ebook(40$) benefits from No Starch Press 85 |
86 | Free Individual licenses to all Jetbrains desktop tools for limited time 87 |
88 |
89 | ), 90 | }, 91 | { 92 | id: 3, 93 | description: ( 94 |
95 | Cash Prize*
96 | T-shirt
97 | Stickers 98 |
99 | $400 digital Ocean credits
100 | Custom XYZ domain for 1 year 101 |
102 | Interview Buddy discount vochures
103 | Taskade lifetime access
104 | Replit 90 days trail 105 |
106 | Coding Block Vouchers 107 |
108 | Script Foundation Academy 90 days premium access 109 |
110 | 1Password access for 1 year
111 | Access to Wolfarm for 30 days 112 |
113 | Qoom 3 months starter plan 114 |
115 | Showcase on Qoom's gallery 116 |
117 | Draftbit 40% off for 1 year 118 |
119 | Balsamic 90 days extended trail 120 |
121 | Axure access 122 |
123 | Rosenfeld Media free book giveaways on their site 124 |
125 | ebook(40$) benefits from No Starch Press 126 |
127 | Free Individual licenses to all Jetbrains desktop tools for limited time 128 |
129 |
130 | ), 131 | }, 132 | { 133 | id: 4, 134 | description: ( 135 |
136 | T-shirt
137 | Stickers 138 |
139 | Custom XYZ domain for 1 year 140 |
141 | Interview Buddy discount vochures
142 | Taskade lifetime access
143 | Coding Block Vouchers 144 |
145 | Script Foundation Academy 90 days premium access 146 |
147 | 1Password access for 1 year
148 | Replit 90 days trail 149 |
150 | Access to Wolfarm for 30 days 151 |
152 | Qoom 3 months starter plan 153 |
154 | Showcase on Qoom's gallery 155 |
156 | Draftbit 40% off for 1 year 157 |
158 | Balsamic 90 days extended trail 159 |
160 | Axure access 161 |
162 | Rosenfeld Media free book giveaways on their site 163 |
164 | ebook(40$) benefits from No Starch Press 165 |
166 | Free Individual licenses to all Jetbrains desktop tools for limited time 167 |
168 |
169 | ), 170 | }, 171 | { 172 | id: 5, 173 | description: ( 174 |
175 | Stickers 176 |
177 | Custom XYZ domain for 1 year 178 |
179 | Interview Buddy discount vochures
180 | Taskade lifetime access
181 | Coding Block Vouchers 182 |
183 | Script Foundation Academy 90 days premium access 184 |
185 | 1Password access for 1 year
186 | Access to Wolfarm for 30 days 187 |
188 | Qoom 3 months starter plan 189 |
190 | Showcase on Qoom's gallery 191 |
192 | Draftbit 40% off for 1 year 193 |
194 | Balsamic 90 days extended trail 195 |
196 | Axure access 197 |
198 | Rosenfeld Media free book giveaways on their site 199 |
200 | ebook(40$) benefits from No Starch Press 201 |
202 | Free Individual licenses to all Jetbrains desktop tools for limited time 203 |
204 |
205 | ), 206 | }, 207 | { 208 | id: 6, 209 | description: ( 210 |
211 | Postman Swag Pack 212 |
213 | Free individual licenses to all Jetbrains desktop tools 214 |
215 | Balsamic: 90 days extended trial promo code 216 |
217 | Taskade: 1 year free upgrades 218 |
219 | XYZ : 1 year free domain for participants 220 |
221 | Repl.It 180 days hackerplan for everyone 222 |
223 | Script Foundation Academy: 90 days vouchers 224 |
225 | 1Password: 1 Free Year of 1Password Families 226 |
227 | Draftxt: Participants(40% off for 1 year) 228 |
229 | Test Mail(3 days free) 230 |
231 | Rosenfeld Media free book giveaways on their site and 20% discount code for attendees 232 |
233 | Access to wolfram for 30 days 234 |
235 | Qoom: 3-month starter plan 236 |
237 | Showcase in Qoom’s gallery 238 |
239 | Digital Ocean 60 days free trial 240 |
241 |
242 | ), 243 | }, 244 | { 245 | id:7, 246 | description: ( 247 |
248 | ₹20,000 for best Dapp built on Tezos 249 |
250 | ₹25,000 for building a Flutter Tezos Wallet App 251 |
252 | Continuity grant opportunity up to $5,000 for outstanding projects 253 |
254 | ), 255 | }, 256 | { 257 | id: 8, 258 | description: ( 259 |
260 | ₹20,000 for best Dapp built on Celo 261 |
262 | Continuity Support 263 |
264 | ), 265 | }, 266 | 267 | { 268 | id: 9, 269 | description: ( 270 |
271 | ₹10,000 for the best hack built on Ethereum, or 272 |
273 | ₹15,000 for the best hack built on Ethereum + Polygon 274 |
275 | Eligibility to apply for internship/full-time roles and seed funding of up to 5,000 USD for winners! 276 |
277 | ), 278 | }, 279 | { 280 | id: 10, 281 | description: ( 282 |
283 | ₹20000 for best use of IPFS and/or Filecoin 284 |
285 | ), 286 | }, 287 | { 288 | id: 11, 289 | description: ( 290 |
291 | Free individual licenses to all Jetbrains desktop tools 292 |
293 | Balsamic: 90 days extended trial promo code 294 |
295 | Taskade: 1 year free upgrades 296 |
297 | XYZ : 1 year free domain for participants 298 |
299 | Repl.It 180 days hackerplan for everyone 300 |
301 | Script Foundation Academy: 90 days vouchers 302 |
303 | 1Password: 1 Free Year of 1Password Families 304 |
305 | Draftxt: Participants(40% off for 1 year) 306 |
307 | Test Mail(3 days free) 308 |
309 | Rosenfeld Media free book giveaways on their site and 20% discount code for attendees 310 |
311 | Access to wolfram for 30 days 312 |
313 | Qoom: 3-month starter plan 314 |
315 | Showcase in Qoom’s gallery 316 |
317 | Digital Ocean 60 days free trial 318 |
319 |
320 | ), 321 | }, 322 | ]; 323 | 324 | export default prizesData; 325 | -------------------------------------------------------------------------------- /src/components/raisebox/raisebox.js: -------------------------------------------------------------------------------- 1 | import styled from "styled-components"; 2 | 3 | export const Raisebox = styled.div` 4 | min-height: 70vh; 5 | width: 90vw; 6 | margin: 10vh auto; 7 | background: #18191a; 8 | box-shadow: 2vw 2vw 2vw 1vw rgba(0, 0, 0, 0.6); 9 | border-radius: 10px; 10 | `; 11 | 12 | export default Raisebox; 13 | -------------------------------------------------------------------------------- /src/components/responsive/index.js: -------------------------------------------------------------------------------- 1 | export const DeviceSize = { 2 | mobile: 768, 3 | tablet: 992, 4 | laptop: 1324, 5 | desktop: 2024, 6 | }; 7 | -------------------------------------------------------------------------------- /src/components/typeform/typeform.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { ReactTypeformEmbed } from "react-typeform-embed"; 3 | 4 | class ExamplePopup extends React.Component { 5 | constructor(props) { 6 | super(props); 7 | this.openForm = this.openForm.bind(this); 8 | } 9 | 10 | openForm() { 11 | this.typeformEmbed.typeform.open(); 12 | } 13 | 14 | render() { 15 | return ( 16 |
17 | { 26 | this.typeformEmbed = tf; 27 | }} 28 | /> 29 | 35 |
36 | ); 37 | } 38 | } 39 | 40 | export default ExamplePopup; 41 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap"); 2 | 3 | html, 4 | body { 5 | width: 100%; 6 | height: 100%; 7 | background: #18191a; 8 | scroll-behavior: smooth; 9 | } 10 | 11 | * { 12 | box-sizing: border-box; 13 | } 14 | 15 | body { 16 | margin: 0; 17 | font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", 18 | "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", 19 | "Helvetica Neue", sans-serif; 20 | -webkit-font-smoothing: antialiased; 21 | -moz-osx-font-smoothing: grayscale; 22 | } 23 | 24 | code { 25 | font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", 26 | monospace; 27 | } 28 | 29 | section { 30 | scroll-margin-block-start: 5rem; 31 | } 32 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import "./index.css"; 4 | import App from "./App"; 5 | import reportWebVitals from "./reportWebVitals"; 6 | 7 | 8 | ReactDOM.render( 9 | 10 | 11 | , 12 | document.getElementById("root") 13 | ); 14 | 15 | // If you want to start measuring performance in your app, pass a function 16 | // to log results (for example: reportWebVitals(console.log)) 17 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 18 | reportWebVitals(); 19 | -------------------------------------------------------------------------------- /src/pages/404.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import styled from 'styled-components'; 3 | 4 | const NotFoundDiv = styled.div` 5 | minheight: 85vh; 6 | alignitems: center; 7 | justifycontent: center; 8 | `; 9 | 10 | const NotFoundh1 = styled.h1` 11 | fontsize: 25vw; 12 | color: #fff; 13 | margin: 0; 14 | `; 15 | 16 | const NotFoundh3 = styled.h1` 17 | fontsize: 8vw; 18 | color: #fff; 19 | margintop: 10%; 20 | `; 21 | 22 | const NotFound = () => ( 23 | 24 | 404 25 | Page not found! 26 | 27 | ); 28 | 29 | export function goHome() { 30 | window.location.href = '/'; 31 | } 32 | 33 | export default NotFound; 34 | -------------------------------------------------------------------------------- /src/pages/ScheduleData.js: -------------------------------------------------------------------------------- 1 | const Day1 = [ 2 | { 3 | id: 1, 4 | time: '9:00', 5 | date: '18 Sept', 6 | title: 'Opening Ceremony', 7 | }, 8 | { 9 | id: 2, 10 | time: '10:00', 11 | date: '18 Sept', 12 | title: 'Hackathon Begins', 13 | }, 14 | { 15 | id: 3, 16 | time: '12:00', 17 | date: '18 Sept', 18 | title: 'Talk by Dr. Munish Jindal, CEO of HoverRobotix', 19 | }, 20 | { 21 | id: 4, 22 | time: '15:00', 23 | date: '18 Sept', 24 | title: 'Brainstorming session', 25 | }, 26 | { 27 | id: 5, 28 | time: '16:30', 29 | date: '18 Sept', 30 | title: 'Fun event with Voice Over Artist, Adi Shetty', 31 | }, 32 | { 33 | id: 6, 34 | time: '18:00', 35 | date: '18 Sept', 36 | title: 'Game Time', 37 | }, 38 | { 39 | id: 7, 40 | time: '20:00', 41 | date: '18 Sept', 42 | title: 'Initial Submission Starts', 43 | }, 44 | { 45 | id: 8, 46 | time: '22:00', 47 | date: '18 Sept', 48 | title: 'Game Time', 49 | }, 50 | { 51 | id: 9, 52 | time: '22:30', 53 | date: '18 Sept', 54 | title: 'Workshop by Koren Grinshpoon, CEO of EchoAR', 55 | }, 56 | ]; 57 | 58 | const Day2 = [ 59 | { 60 | id: 10, 61 | time: '17:00', 62 | date: '19 Sept', 63 | title: 'Final Project Submission', 64 | }, 65 | { 66 | id: 11, 67 | time: '17:30', 68 | date: '19 Sept', 69 | title: 'Project Showcase', 70 | }, 71 | { 72 | id: 12, 73 | time: '19:00', 74 | date: '19 Sept', 75 | title: 'Top 10 announcement', 76 | }, 77 | { 78 | id: 13, 79 | time: '19:30', 80 | date: '19 Sept', 81 | title: 'Presentation of top projects', 82 | }, 83 | { 84 | id: 14, 85 | time: '20:30', 86 | date: '19 Sept', 87 | title: 'Closing Ceremony', 88 | }, 89 | ]; 90 | 91 | const Day3 = [ 92 | { 93 | id: 15, 94 | time: '19:00', 95 | date: '22 Sept', 96 | title: 'Winners announcement', 97 | }, 98 | ]; 99 | 100 | export { Day1, Day2, Day3 }; 101 | -------------------------------------------------------------------------------- /src/pages/SpeakerData.js: -------------------------------------------------------------------------------- 1 | const speakerData = [ 2 | { 3 | id:1, 4 | className:"logo_speaker border_grad", 5 | link:"https://www.portis.io/", 6 | image:("https://hackon.tech/_nuxt/img/Juan-Pablo.960133a.png"), 7 | alt:"Portis silver sponsor for Hackodisha", 8 | style:{width:"300px"}, 9 | name:'Debasish', 10 | description:"Program manager", 11 | company_logo:"https://github.githubassets.com/images/modules/logos_page/GitHub-Logo.png", 12 | alt_company:"Github", 13 | 14 | }, 15 | { 16 | id:2, 17 | className:"logo_speaker border_grad", 18 | link:"https://www.portis.io/", 19 | image:("https://hackon.tech/_nuxt/img/Juan-Pablo.960133a.png"), 20 | alt:"Portis silver sponsor for Hackodisha", 21 | style:{width:"300px"}, 22 | name:'Lorem Ipsum', 23 | description:"Program manager", 24 | company_logo:"https://github.githubassets.com/images/modules/logos_page/GitHub-Logo.png", 25 | alt_company:"Github", 26 | 27 | }, 28 | { 29 | id:3, 30 | className:"logo_speaker border_grad", 31 | link:"https://www.portis.io/", 32 | image:("https://hackon.tech/_nuxt/img/Juan-Pablo.960133a.png"), 33 | alt:"Portis silver sponsor for Hackodisha", 34 | style:{width:"300px"}, 35 | name:'Lorem Ipsum', 36 | description:"Program manager", 37 | company_logo:"https://github.githubassets.com/images/modules/logos_page/GitHub-Logo.png", 38 | alt_company:"Github", 39 | 40 | }, 41 | { 42 | id:4, 43 | className:"logo_speaker border_grad", 44 | link:"https://www.portis.io/", 45 | image:("https://hackon.tech/_nuxt/img/Juan-Pablo.960133a.png"), 46 | alt:"Portis silver sponsor for Hackodisha", 47 | style:{width:"300px"}, 48 | name:'Lorem Ipsum', 49 | description:"Program manager", 50 | company_logo:"https://github.githubassets.com/images/modules/logos_page/GitHub-Logo.png", 51 | alt_company:"Github", 52 | 53 | }, 54 | { 55 | id:5, 56 | className:"logo_speaker border_grad", 57 | link:"https://www.portis.io/", 58 | image:("https://hackon.tech/_nuxt/img/Juan-Pablo.960133a.png"), 59 | alt:"Portis silver sponsor for Hackodisha", 60 | style:{width:"300px"}, 61 | name:'Lorem Ipsum', 62 | description:"Program manager", 63 | company_logo:"https://github.githubassets.com/images/modules/logos_page/GitHub-Logo.png", 64 | alt_company:"Github", 65 | 66 | }, 67 | 68 | 69 | ]; 70 | export default speakerData; 71 | 72 | -------------------------------------------------------------------------------- /src/pages/about.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Container, Row, Col } from 'react-grid-system'; 3 | import Raisebox from '../components/raisebox/raisebox'; 4 | import styled from 'styled-components'; 5 | 6 | const AboutHeading = styled.div` 7 | height: 100%; 8 | width: 100%; 9 | display: flex; 10 | align-items: center; 11 | justify-content: center; 12 | `; 13 | 14 | const Abouth1 = styled.h1` 15 | font-weight: 900; 16 | color: #fff; 17 | font-size: 5rem; 18 | line-height: 0.8em; 19 | letter-spacing: -0.07em; 20 | 21 | @media screen and (max-width: 576px) { 22 | font-size: 4rem; 23 | } 24 | `; 25 | 26 | const Abouth2 = styled.h2` 27 | font-weight: 900; 28 | text-align: left; 29 | color: #fff; 30 | line-height: 2em; 31 | font-size: 1.4rem; 32 | 33 | @media screen and (max-width: 576px) { 34 | font-size: 1.2rem; 35 | } 36 | `; 37 | 38 | function About() { 39 | return ( 40 |
41 | 42 | 43 | 44 | 45 | 46 | 47 | HACK ODISHA {' '} 48 | 49 | 50 | 51 | 52 | 53 | Hackodisha brings you an enterprising platform where you can 54 | showcase your unique ideas and expand your boundaries with your 55 | creativity and proficiency. Webwiz NIT Rourkela is proud to host 56 | the hackathon on the occasion of the diamond jubilee celebration 57 | of NIT Rourkela. Hackodisha is a 36-hour hackathon and whether 58 | you are having a formidable team or you are a lone-wolf, do grab 59 | this opportunity to take home some exciting prizes, goodies and 60 | certificates and MEMORIES! 61 | 62 | 63 | 64 | 65 | 66 |
67 | ); 68 | } 69 | 70 | export default About; 71 | -------------------------------------------------------------------------------- /src/pages/calendly.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Raisebox from '../components/raisebox/raisebox'; 3 | import { InlineWidget } from 'react-calendly'; 4 | import styled from 'styled-components'; 5 | 6 | const CalendlyHeading = styled.h1` 7 | font-weight: 900; 8 | padding-top: 5%; 9 | color: #fff; 10 | font-size: 5rem; 11 | line-height: 0.8em; 12 | letter-spacing: -0.07em; 13 | 14 | @media screen and (max-width: 576px) { 15 | font-size: 4rem; 16 | } 17 | `; 18 | 19 | const CalendlyBox = styled.div` 20 | width: 72%; 21 | margin-left: 10rem; 22 | align-items: center; 23 | 24 | @media screen and (max-width: 576px) { 25 | width: 100%; 26 | margin-left: 0%; 27 | height: 100%; 28 | } 29 | @media screen and (max-width: 768px) { 30 | width: 100%; 31 | margin-left: 0%; 32 | height: 100%; 33 | } 34 | `; 35 | 36 | function Calendly() { 37 | return ( 38 | 39 |
40 | 41 | Schedule Meet 42 | 43 | 44 | 45 | 46 |
47 |
48 | ); 49 | } 50 | 51 | export default Calendly; 52 | -------------------------------------------------------------------------------- /src/pages/events.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import styled from 'styled-components'; 3 | import './style.css'; 4 | import { Grid } from '@material-ui/core'; 5 | import Raisebox from '../components/raisebox/raisebox'; 6 | 7 | const Event = styled.div` 8 | padding: 2%; 9 | `; 10 | 11 | const Image = styled.img` 12 | width: 100%; 13 | `; 14 | 15 | const Image2 = styled.img` 16 | width: 40%; 17 | margin-top: -15%; 18 | `; 19 | 20 | const Image3 = styled.img` 21 | width: 20%; 22 | margin-top: -20%; 23 | `; 24 | 25 | const Text = styled.h3` 26 | color: white; 27 | text-align: left; 28 | margin-left: 2%; 29 | line-height: 1.9rem; 30 | letter-spacing: 0.1rem; 31 | font-weight: 400; 32 | `; 33 | 34 | const Date = styled.h3` 35 | color: white; 36 | text-align: left; 37 | margin-left: 2%; 38 | margin-top: 5%; 39 | font-weight: 500; 40 | `; 41 | 42 | const Heading = styled.h1` 43 | color: white; 44 | font-size: 4rem; 45 | margin: 0 auto; 46 | 47 | @media screen and (max-width: 768px) { 48 | font-size: 3rem; 49 | } 50 | `; 51 | 52 | const Button = styled.button` 53 | border: 0; 54 | outline: 0; 55 | padding: 8px 1em; 56 | color: #fff; 57 | font-size: 18px; 58 | font-weight: 600; 59 | border-radius: 20px; 60 | background-color: transparent; 61 | border: 2px solid #ff0000; 62 | transition: all 240ms ease-in-out; 63 | cursor: pointer; 64 | margin-right: 5%; 65 | &:hover { 66 | color: #000; 67 | background-color: #ff0000; 68 | } 69 | 70 | &:not(:last-of-type) { 71 | margin-right: 7px; 72 | } 73 | `; 74 | 75 | function Events() { 76 | return ( 77 |
78 | 79 | 80 | 81 | 82 | Replica Event 86 | 87 | 88 | 89 | Replica. 90 | 91 | 92 | Aliens are trying to communicate with us by sending signals. You 93 | have been given waveforms, and you have to decode what circuitry 94 | the aliens might be using. Your task is to replicate those 95 | waveforms as closely as possible by simulating your circuit 96 | before they attack us. 97 | 98 | 99 | Date: 4th September 100 | 2021 101 | 102 | 107 |
108 | 112 |
113 |
114 |
115 |
116 |
117 | 118 | 119 | 120 | 121 | Cryptoquest 125 | 126 | 127 | 128 | Crypt-o-quest. 129 | 130 | 131 | Cryptocurrency trading or crypto trading involves buying and 132 | selling cryptocurrencies to earn profit. We speculate mainly on 133 | the price movement of cryptocurrency. As of recently, this field 134 | is pretty hyped up, and people are driven towards it. 135 |
136 | When we talk about the competition, the RSTO game token comes 137 | into account. It is the driving force of the competitions. Top 138 | rankers will get the reward in terms of RSTO, while low rankers 139 | will face some loss. Thus it builds up a reward system where you 140 | play more to earn more. 141 |
142 | 143 | Date: 10th September 144 | 2021 145 | 146 | 151 |
152 | 156 |
157 |
158 |
159 |
160 |
161 | 162 | 163 | 164 | 165 | Auto-Potency 169 | 170 | 171 | 172 | Auto-Potency. 173 | 174 | 175 | The revolution of industry brought a drastic change in people's 176 | living standard and culture. The increase in number of jobs from 177 | various sectors, increase in production activities helped people 178 | grow to an ever increasing level that it seems A.I. is going to 179 | take over our work force. This 21st century has given the people 180 | the needs to fulfill anything they can dream of. Starting from a 181 | small needle to huge machines. The obsession with productivity 182 | has run our lives. Collective work has always been a wise 183 | principle to improve our productivity in this modern era of 184 | machines. 185 | 186 | 187 | Date: 11th September 188 | 2021 189 | 190 | 195 |
196 | 200 |
201 |
202 |
203 |
204 |
205 |
206 | ); 207 | } 208 | 209 | export default Events; 210 | -------------------------------------------------------------------------------- /src/pages/faq.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Raisebox from '../components/raisebox/raisebox'; 3 | import Faq from 'react-faq-component'; 4 | import { Container, Row, Col } from 'react-grid-system'; 5 | import styled from 'styled-components'; 6 | 7 | const data1 = { 8 | rows: [ 9 | { 10 | title: 'How much do I pay to register for Hackodisha?', 11 | content: `No the hackathon is completely free for everyone.`, 12 | }, 13 | { 14 | title: 'What is team size?', 15 | content: `The team can be of size 1-4 members`, 16 | }, 17 | { 18 | title: 'I am a beginner. Am I eligible to participate?', 19 | content: `Yes ofc, if you are a beginner its the best way to start your hacakthon journey and we would be very much pleased to have you. We would love to have your participation.`, 20 | }, 21 | { 22 | title: 'I just graduated, can I still come to an event?', 23 | content: `Yes. All school students and college students including the students graduating this year are invited. Even working professionals and people who don't have any formal education are welcomed! `, 24 | }, 25 | ], 26 | }; 27 | 28 | const data2 = { 29 | rows: [ 30 | { 31 | title: 'Are we allowed to build on past projects/submit old projects?', 32 | content: `Yes. You can bring your old projects, but you will be judged on the features you add during the hackathon`, 33 | }, 34 | { 35 | title: 'Can I start working on my hack before event?', 36 | content: `Yes you can. But again the work done during the hackathon is only counted.`, 37 | }, 38 | { 39 | title: 'Can I apply for multiple tracks?', 40 | content: `You can submit only one project but it can include as many tracks as you want.`, 41 | }, 42 | { 43 | title: 'Error 404! Question not found?', 44 | content: `No worries. Drop a message using our messenger bot`, 45 | }, 46 | ], 47 | }; 48 | 49 | const FaqHeading = styled.div` 50 | padding-top: 5%; 51 | font-weight: 900; 52 | color: #fff; 53 | font-size: 5rem; 54 | line-height: 0.8em; 55 | letter-spacing: -0.07em; 56 | 57 | @media screen and (max-width: 576px) { 58 | font-size: 4rem; 59 | } 60 | `; 61 | 62 | const styles = { 63 | bgColor: '#18191a', 64 | titleTextColor: 'black', 65 | rowTitleColor: 'red', 66 | rowContentColor: 'white', 67 | arrowColor: 'white', 68 | height: '60px', 69 | }; 70 | 71 | function home2() { 72 | return ( 73 |
74 | 78 | 81 | 82 | Have any questions? 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 |
96 | ); 97 | } 98 | 99 | export default home2; 100 | -------------------------------------------------------------------------------- /src/pages/home.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import styled from 'styled-components'; 3 | import Raisebox from '../components/raisebox/raisebox'; 4 | import { Container, Row, Col } from 'react-grid-system'; 5 | 6 | const Homeh1 = styled.h1` 7 | font-weight: 400; 8 | color: #fff; 9 | line-height: 1.5em; 10 | font-size: 1.8em; 11 | margin-top: 20vh; 12 | margin-left: -2vw; 13 | 14 | @media screen and (max-width: 575px) { 15 | font-size: 1.5rem; 16 | } 17 | @media screen and (max-width: 767px) { 18 | margin: -10vh auto 0 auto; 19 | } 20 | `; 21 | 22 | const Homeh1Span = styled.h1` 23 | font-weight: 700; 24 | font-size: 2.2rem; 25 | 26 | @media screen and (max-width: 575px) { 27 | font-size: 1.7rem; 28 | } 29 | `; 30 | 31 | const MapImg = styled.img` 32 | height: auto; 33 | width: 70vw; 34 | margin-left: -15vw; 35 | margin-top: -10vh; 36 | @media screen and (max-width: 767px) { 37 | overflow: hidden; 38 | width: 550px; 39 | margin-left: -35vw; 40 | } 41 | `; 42 | 43 | const DateImg = styled.img` 44 | margin: 5vh auto 0 auto; 45 | width: 45vw; 46 | height: auto; 47 | padding: 5%; 48 | margin-left: -2vw; 49 | @media screen and (max-width: 767px) { 50 | width: 80vw; 51 | } 52 | `; 53 | 54 | const Buttons = styled.div` 55 | margin-left: -40vw; 56 | margin-top: 2vh; 57 | @media only screen and (min-width: 381px) and (max-width: 768px) { 58 | margin: 0 auto; 59 | } 60 | @media only screen and (max-width: 380px) { 61 | margin: 0 auto; 62 | overflow: hidden; 63 | } 64 | `; 65 | 66 | const Button1 = styled.button` 67 | height: 46px; 68 | width: 315px; 69 | border-radius: 5px; 70 | border: none; 71 | cursor: pointer; 72 | background-color: black; 73 | @media only screen and (min-width: 708px) { 74 | margin-left: 10px; 75 | } 76 | `; 77 | 78 | const Button2 = styled.div` 79 | cursor: pointer; 80 | `; 81 | 82 | const Discord = styled.img` 83 | height: 43px; 84 | width: 140px; 85 | `; 86 | 87 | function Home() { 88 | return ( 89 |
90 | 91 | 92 | 93 | 94 | 98 | 99 | 100 | 101 | Give life to your innovative ideas that can be solutions to the 102 | problems of today with HACKODISHA! 103 | 104 | 108 | 109 | 115 | 120 | 121 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 |
133 | ); 134 | } 135 | 136 | export default Home; 137 | -------------------------------------------------------------------------------- /src/pages/home2.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import styled from 'styled-components'; 3 | import Raisebox from '../components/raisebox/raisebox'; 4 | 5 | export const Container = styled.div` 6 | margin: auto; 7 | display: flex; 8 | flex-wrap: wrap; 9 | `; 10 | 11 | export const Content = styled.h1` 12 | font-weight: 400; 13 | background: #fff; 14 | background-clip: text; 15 | -webkit-background-clip: text; 16 | color: transparent; 17 | line-height: 1.5em; 18 | font-size: 1.7rem; 19 | margin-top: -43%; 20 | padding-left: 50%; 21 | padding-right: 5%; 22 | 23 | @media only screen and (max-width: 360px) { 24 | font-size: 1.2rem; 25 | padding-left: 22%; 26 | margin-left: -20%; 27 | padding-right: 45%; 28 | margin-top: -10%; 29 | } 30 | 31 | @media only screen and (min-width: 361px) and (max-width: 440px) { 32 | padding-left: 33%; 33 | margin-left: -22%; 34 | display: block; 35 | padding-right: 49%; 36 | font-size: 1.2rem; 37 | margin-top: -10%; 38 | } 39 | @media only screen and (min-width: 441px) and (max-width: 540px) { 40 | padding-left: 30%; 41 | margin-left: -20%; 42 | display: block; 43 | padding-right: 30%; 44 | font-size: 1.3rem; 45 | margin-top: -10%; 46 | } 47 | @media only screen and (min-width: 541px) and (max-width: 768px) { 48 | font-size: 1.4rem; 49 | margin-top: -25%; 50 | padding-left: 29%; 51 | padding-right: 16%; 52 | } 53 | @media only screen and (min-width: 769px) and (max-width: 936px) { 54 | padding-left: 10%; 55 | margin-left: 25%; 56 | padding-right: 10%; 57 | font-size: 1.6rem; 58 | } 59 | @media only screen and (min-width: 937px) and (max-width: 1024px) { 60 | padding-left: 5%; 61 | margin-left: 30%; 62 | padding-right: 25%; 63 | font-size: 2rem; 64 | margin-top: -35%; 65 | } 66 | @media only screen and (min-width: 1025px) and (max-width: 1200px) { 67 | padding-left: 30%; 68 | margin-left: 20%; 69 | padding-right: 5%; 70 | } 71 | `; 72 | 73 | export const Image = styled.img` 74 | height: 105vh; 75 | margin-top: -8%; 76 | margin-left: -14%; 77 | 78 | @media only screen and (max-width: 360px) { 79 | height: 70vh; 80 | margin-left: -22%; 81 | margin-top: -16%; 82 | } 83 | 84 | @media only screen and (min-width: 361px) and (max-width: 480px) { 85 | height: 70vh; 86 | margin-left: -24%; 87 | margin-top: -21%; 88 | } 89 | 90 | @media only screen and (min-width: 481px) and (max-width: 768px) { 91 | height: 70vh; 92 | margin-left: -18%; 93 | margin-top: -15%; 94 | } 95 | @media only screen and (min-width: 769px) and (max-width: 936px) { 96 | height: 85vh; 97 | margin-left: -20%; 98 | margin-top: -10%; 99 | } 100 | @media only screen and (min-width: 937px) and (max-width: 1024px) { 101 | height: 75vh; 102 | margin-top: -15%; 103 | margin-left: -20%; 104 | } 105 | @media only screen and (min-width: 1025px) and (max-width: 1200px) { 106 | height: 85vh; 107 | } 108 | `; 109 | 110 | export const Date = styled.img` 111 | height: 28vh; 112 | margin-left: 49%; 113 | margin-top: -28%; 114 | 115 | @media only screen and (max-width: 360px) { 116 | height: 13vh; 117 | margin-top: 10px; 118 | margin-left: 7%; 119 | margin-bottom: 5%; 120 | } 121 | 122 | @media only screen and (min-width: 361px) and (max-width: 480px) { 123 | height: 14vh; 124 | margin-top: 0; 125 | margin-left: 6%; 126 | } 127 | @media only screen and (min-width: 441px) and (max-width: 540px) { 128 | height: 17vh; 129 | margin-top: 0; 130 | margin-left: 7%; 131 | } 132 | @media only screen and (min-width: 541px) and (max-width: 768px) { 133 | height: 17vh; 134 | margin: 0 auto; 135 | } 136 | @media only screen and (min-width: 769px) and (max-width: 936px) { 137 | height: 20vh; 138 | margin-left: 25%; 139 | margin-top: -25%; 140 | } 141 | @media only screen and (min-width: 937px) and (max-width: 1024px) { 142 | height: 20vh; 143 | margin-left: 15%; 144 | margin-top: -5%; 145 | } 146 | @media only screen and (min-width: 1025px) and (max-width: 1200px) { 147 | height: 25vh; 148 | margin-left: 35%; 149 | margin-top: -25%; 150 | } 151 | `; 152 | 153 | export const Buttons = styled.div` 154 | margin-left: 45%; 155 | margin-top: -7%; 156 | @media only screen and (min-width: 381px) and (max-width: 1200px) { 157 | margin: 0 auto; 158 | } 159 | @media only screen and (max-width: 380px) { 160 | margin: 0 auto; 161 | overflow: hidden; 162 | } 163 | `; 164 | 165 | export const Button1 = styled.button` 166 | height: 46px; 167 | width: 315px; 168 | border-radius: 5px; 169 | border: none; 170 | background-color: black; 171 | @media only screen and (min-width: 708px) { 172 | margin-left: 5px; 173 | } 174 | `; 175 | 176 | export const Button2 = styled.div` 177 | margin-left: 25px; 178 | width: 220px; 179 | `; 180 | 181 | export const Discord = styled.img` 182 | height: 43px; 183 | width: 140px; 184 | `; 185 | 186 | function Home() { 187 | return ( 188 |
189 | 190 | 191 | MAP OF ODISHA 195 | 196 | Give life to your innovative ideas that can be solutions to the 197 | problems of today with{' '} 198 | 199 | HACKODISHA! 200 | 201 | 202 | 203 | 204 | 210 | 215 | 216 | 220 | 221 | 222 | 223 | 224 | 225 |
226 | ); 227 | } 228 | 229 | export default Home; 230 | -------------------------------------------------------------------------------- /src/pages/main.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Sponsors from './sponsors'; 3 | import Tracks from './tracks'; 4 | import About from './about'; 5 | import Home from './home'; 6 | import Faq from './faq'; 7 | import Prizes from './prizes'; 8 | import Schedule from './schedule'; 9 | import { useEffect } from 'react'; 10 | import Events from './events'; 11 | import Team from './team'; 12 | 13 | function Main() { 14 | useEffect(() => { 15 | const script = document.createElement('script'); 16 | script.src = 'https://apply.devfolio.co/v2/sdk.js'; 17 | script.async = true; 18 | script.defer = true; 19 | document.body.appendChild(script); 20 | return () => { 21 | document.body.removeChild(script); 22 | }; 23 | }); 24 | return ( 25 |
26 |
27 | 28 |
29 |
30 | 31 |
32 |
33 | 34 |
35 |
36 | 37 |
38 |
39 | 40 |
41 | {/*
42 | 43 |
*/} 44 |
45 | 46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | {/*
57 | 58 |
*/} 59 |
60 | ); 61 | } 62 | 63 | export default Main; 64 | -------------------------------------------------------------------------------- /src/pages/prizes.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Raisebox from '../components/raisebox/raisebox.js'; 3 | import PrizesCard from '../components/prizes-card/PrizesCard'; 4 | import { Container, Row, Col } from 'react-grid-system'; 5 | import './style.css' 6 | 7 | 8 | function Prizes() { 9 | return ( 10 |
11 | 12 |
13 |

14 | EXCITING PRIZES 15 |

{' '} 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 |
26 | ); 27 | } 28 | 29 | export default Prizes; 30 | -------------------------------------------------------------------------------- /src/pages/schedule.jsx: -------------------------------------------------------------------------------- 1 | import { React } from 'react'; 2 | import styled from 'styled-components'; 3 | import Raisebox from '../components/raisebox/raisebox'; 4 | import './style.css'; 5 | import { Day1, Day2, Day3 } from './ScheduleData'; 6 | import ScheduleCard from '../components/ScheduleCard'; 7 | 8 | const ScheduleContainer = styled.div` 9 | height: 100%; 10 | width: 100%; 11 | align-items: center; 12 | justify-content: center; 13 | display: flex; 14 | `; 15 | 16 | const Scheduleh1 = styled.h1` 17 | font-weight: 900; 18 | color: #fff; 19 | font-size: 6rem; 20 | line-height: 0.8em; 21 | letter-spacing: -0.07em; 22 | 23 | @media screen and (max-width: 576px) { 24 | font-size: 3.2rem; 25 | } 26 | `; 27 | function card1(Day1) { 28 | return ( 29 | 35 | ); 36 | } 37 | function card2(Day2) { 38 | return ( 39 | 45 | ); 46 | } 47 | 48 | function card3(Day3) { 49 | return ( 50 | 56 | ); 57 | } 58 | 59 | function Schedule() { 60 | return ( 61 | 62 | 63 | 64 | HACKATHON SCHEDULE 65 | {' '} 66 | 67 | 68 |
69 |
70 |
71 |
72 | {Day1.map(card1)} 73 | {Day2.map(card2)} 74 | {Day3.map(card3)} 75 |
76 |
77 |
78 |
79 |
80 | ); 81 | } 82 | 83 | export default Schedule; 84 | -------------------------------------------------------------------------------- /src/pages/speakers.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import styled from 'styled-components'; 3 | import './style.css'; 4 | import { Row, Col } from 'react-grid-system'; 5 | import Raisebox from '../components/raisebox/raisebox'; 6 | import Speakercard from '../components/Speakercard'; 7 | import SpeakerData from './SpeakerData'; 8 | 9 | const Speakers = styled.h1` 10 | padding-top: 5%; 11 | font-weight: 900; 12 | color: #fff; 13 | font-size: 5rem; 14 | line-height: 0.8em; 15 | letter-spacing: -0.07em; 16 | @media screen and (max-width: 576px) { 17 | font-size: 4rem; 18 | } 19 | `; 20 | 21 | function speakCard(SpeakerData) { 22 | return ( 23 | 24 | 35 | 36 | ); 37 | } 38 | 39 | function Speaker() { 40 | return ( 41 |
42 | 43 | 44 | Our Speakers 45 | 46 | {SpeakerData.map(speakCard)} 47 | 48 | 49 |
50 | ); 51 | } 52 | 53 | export default Speaker; 54 | -------------------------------------------------------------------------------- /src/pages/sponData.jsx: -------------------------------------------------------------------------------- 1 | const bronzeData = [ 2 | { 3 | id: 1, 4 | className: 'logo_small', 5 | link: 'https://www.echoar.xyz/', 6 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815443/Assets/Sponsors/echoar_xp1w5c.webp', 7 | alt: 'Echo AR bronze sponsor for Hackodisha', 8 | }, 9 | { 10 | id: 2, 11 | className: 'logo_small', 12 | link: 'https://www.jetbrains.com/', 13 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815444/Assets/Sponsors/jetbrains_ahmsob.webp', 14 | alt: 'Jet Brains bronze sponsor for Hackodisha', 15 | style: { width: '150px' }, 16 | }, 17 | { 18 | id: 3, 19 | className: 'logo_small', 20 | link: 'https://balsamiq.com/', 21 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815442/Assets/Sponsors/balsamiq_bge2fb.webp', 22 | alt: 'Balsamiq bronze sponsor for Hackodisha', 23 | }, 24 | { 25 | id: 4, 26 | className: 'logo_small', 27 | link: 'https://www.taskade.com/', 28 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815440/Assets/Sponsors/taskade_kyhrla.webp', 29 | alt: 'Taskade bronze sponsor for Hackodisha', 30 | style: { width: '150px' }, 31 | }, 32 | { 33 | id: 5, 34 | className: 'logo_small', 35 | link: 'https://codingblocks.com/', 36 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815442/Assets/Sponsors/codingblocks_ombbl8.webp', 37 | alt: 'Coding Blocks bronze sponsor for Hackodisha', 38 | }, 39 | { 40 | id: 6, 41 | className: 'logo_small', 42 | link: 'https://1password.com/', 43 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815441/Assets/Sponsors/1password_poazhb.webp', 44 | alt: '1 password bronze sponsor for Hackodisha', 45 | style: { width: '150px' }, 46 | }, 47 | { 48 | id: 7, 49 | className: 'logo_small', 50 | link: 'https://draftbit.com/', 51 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815443/Assets/Sponsors/draftbit_ored0p.webp', 52 | alt: 'draftbit bronze sponsor for Hackodisha', 53 | }, 54 | { 55 | id: 8, 56 | className: 'logo_small', 57 | link: 'https://testmail.app/', 58 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815439/Assets/Sponsors/testmail_hc2si1.svg', 59 | alt: 'testmail app bronze sponsor for Hackodisha', 60 | }, 61 | { 62 | id: 9, 63 | className: 'logo_small', 64 | link: 'https://nostarch.com/', 65 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815444/Assets/Sponsors/image_x0izl6.webp', 66 | alt: 'nostarch bronze sponsor for Hackodisha', 67 | }, 68 | { 69 | id: 10, 70 | className: 'logo_small', 71 | link: 'https://www.roostoo.com/', 72 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815438/Assets/Sponsors/roostoo_o79ozc.webp', 73 | alt: 'Roostoo bronze sponsor for Hackodisha', 74 | }, 75 | { 76 | id: 11, 77 | className: 'logo_small', 78 | link: 'https://hoverrobotix.com/', 79 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815444/Assets/Sponsors/hoverRobotix_vvofgf.webp', 80 | alt: 'Hover Robotix bronze sponsor for Hackodisha', 81 | }, 82 | { 83 | id: 12, 84 | className: 'logo_small', 85 | link: 'https://www.hackathonsinternational.com/', 86 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815444/Assets/Sponsors/HackathonsInternational1_lxikau.webp', 87 | alt: 'Hackathons International bronze sponsor for Hackodisha', 88 | }, 89 | { 90 | id: 13, 91 | className: 'logo_small', 92 | link: 'https://interviewbuddy.in/', 93 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815445/Assets/Sponsors/interviewBuddy_dmzezo.webp', 94 | alt: 'Interview Buddy bronze sponsor for Hackodisha', 95 | }, 96 | { 97 | id: 14, 98 | className: 'logo_small', 99 | link: 'http://karoverify.xyz/', 100 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815444/Assets/Sponsors/karoverify2_ryqiml.webp', 101 | alt: 'Karo Verify bronze sponsor for Hackodisha', 102 | }, 103 | { 104 | id: 15, 105 | className: 'logo_small', 106 | link: 'https://rosenfeldmedia.com/', 107 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815438/Assets/Sponsors/Rosenfeld_u4qxtg.webp', 108 | alt: 'Rosenfeld bronze sponsor for Hackodisha', 109 | }, 110 | { 111 | id: 16, 112 | className: 'logo_small', 113 | link: 'https://www.stickermule.com/', 114 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815439/Assets/Sponsors/sticker-mule_sqdqke.svg', 115 | alt: 'StickerMule bronze sponsor for Hackodisha', 116 | }, 117 | { 118 | id: 17, 119 | className: 'logo_small', 120 | link: 'https://replit.com/', 121 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815438/Assets/Sponsors/replit_cttykf.svg', 122 | alt: 'replit bronze sponsor for Hackodisha', 123 | }, 124 | { 125 | id: 18, 126 | className: 'logo_small', 127 | link: 'https://www.framer.com/', 128 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815443/Assets/Sponsors/framer_goxcd6.webp', 129 | alt: 'Framer bronze sponsor for Hackodisha', 130 | }, 131 | { 132 | id: 19, 133 | className: 'logo_small', 134 | link: 'https://gen.xyz/', 135 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815441/Assets/Sponsors/xyzdomain_dtawtj.webp', 136 | alt: 'XYZ domain bronze sponsor for Hackodisha', 137 | }, 138 | { 139 | id: 20, 140 | className: 'logo_small', 141 | link: 'https://www.linode.com/', 142 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815444/Assets/Sponsors/linode_nlrreg.webp', 143 | alt: 'Linode bronze sponsor for Hackodisha', 144 | }, 145 | { 146 | id: 21, 147 | className: 'logo_small', 148 | link: 'https://www.wolframalpha.com/', 149 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815442/Assets/Sponsors/Wolfram1_lqxoj1.webp', 150 | alt: 'Wolfram bronze sponsor for Hackodisha', 151 | }, 152 | { 153 | id: 22, 154 | className: 'logo_small', 155 | link: 'https://www.codingminutes.com/', 156 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815443/Assets/Sponsors/codingminutes_vmrfgj.webp', 157 | alt: 'Coding Minutes bronze sponsor for Hackodisha', 158 | }, 159 | { 160 | id: 23, 161 | className: 'logo_small', 162 | link: 'https://www.qoom.io/', 163 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815445/Assets/Sponsors/qoom_ufut7g.webp', 164 | alt: 'Qoom bronze sponsor for Hackodisha', 165 | }, 166 | { 167 | id: 24, 168 | className: 'logo_small', 169 | link: 'https://www.axure.com/', 170 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815442/Assets/Sponsors/axure_tpsnei.webp', 171 | alt: 'Axure bronze sponsor for Hackodisha', 172 | }, 173 | { 174 | id: 25, 175 | className: 'logo_small', 176 | link: 'https://www.ecrivonsgraphology.com/', 177 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1628352202/Assets/Sponsors/Ecrivons_Logo_gy4jcu_lquj5b.png', 178 | alt: 'Ecrivons bronze sponsor for Hackodisha', 179 | }, 180 | { 181 | id: 26, 182 | className: 'logo_small', 183 | link: 'https://www.voiceflow.com/', 184 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1628245520/Assets/Sponsors/voiceflow-logo-white-full_2494_gyc6j3.png', 185 | alt: 'Voiceflow bronze sponsor for Hackodisha', 186 | }, 187 | { 188 | id: 27, 189 | className: 'logo_small', 190 | link: 'https://www.commudle.com/', 191 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1628196548/Assets/Sponsors/commudle_rzvcpj.png', 192 | alt: 'commudle bronze sponsor of Hackodisha', 193 | }, 194 | 195 | ]; 196 | 197 | const silverData = [ 198 | { 199 | id: 1, 200 | className: 'logo-mid', 201 | link: 'https://polygon.technology/', 202 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815445/Assets/Sponsors/poly1_bfplcf.webp', 203 | alt: 'Polygon silver sponsor for Hackodisha', 204 | }, 205 | { 206 | id: 2, 207 | className: 'logo-mid', 208 | link: 'https://celo.org/', 209 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815442/Assets/Sponsors/celo1_uuuxcv.webp', 210 | alt: 'Celo silver sponsor for Hackodisha', 211 | }, 212 | 213 | { 214 | id: 3, 215 | className: 'logo-mid', 216 | link: 'https://tezos.com/', 217 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815440/Assets/Sponsors/tezos_daczjn.webp', 218 | alt: 'Tezos silver sponsor for Hackodisha', 219 | }, 220 | { 221 | id: 4, 222 | className: 'logo_small', 223 | link: 'https://filecoin.io/', 224 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1630429922/Assets/Sponsors/Filecoin_Coloured_White_Text-1_o5jnhl.png', 225 | alt: 'Filecoin silver sponsor for Hackodisha', 226 | }, 227 | { 228 | id: 5, 229 | className: 'logo_small', 230 | link: 'https://streamyard.com/', 231 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1630134474/Assets/Sponsors/logo_ytdq72.png', 232 | alt: 'Streamyard silver sponsor for Hackodisha', 233 | }, 234 | { 235 | id: 6, 236 | className: 'logo_small', 237 | link: 'https://sudans.tech/', 238 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815439/Assets/Sponsors/ST_new_vrfmco.webp', 239 | alt: 'Sudan Tech silver sponsor for Hackodisha', 240 | }, 241 | ]; 242 | 243 | const scriptData = [ 244 | { 245 | id: 1, 246 | className: 'logo-script', 247 | link: 'https://www.scriptindia.org/', 248 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815439/Assets/Sponsors/script_awz0gh.webp', 249 | alt: 'Script Foundation education partner for Hackodisha', 250 | }, 251 | ]; 252 | 253 | const webwizData = [ 254 | { 255 | id: 2, 256 | className: 'logo-webwiz', 257 | link: 'https://webwiz-portfolio.web.app/', 258 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815441/Assets/Sponsors/webwizlogo_b4yktt.webp', 259 | alt: 'Webwiz the lead organizing team of Hackodisha', 260 | }, 261 | ]; 262 | 263 | const rourkData = [ 264 | { 265 | id: 3, 266 | className: 'logo-rourkela360', 267 | link: 'https://www.instagram.com/rourkela360/', 268 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815442/Assets/Sponsors/rourkela360_hmkoph.webp', 269 | alt: 'Rourkela 360 media partner of Hackodisha', 270 | }, 271 | ]; 272 | 273 | const OdishaData = [ 274 | { 275 | id: 4, 276 | className: 'logo-odishanow', 277 | link: 'https://instagram.com/odisha_now', 278 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815445/Assets/Sponsors/OdishaNow_piplbj.webp', 279 | alt: 'Odisha Now media partner of Hackodisha', 280 | }, 281 | ]; 282 | 283 | const rourkShData = [ 284 | { 285 | id: 3, 286 | className: 'logo-rourkelashines', 287 | link: 'https://www.instagram.com/rourkela360/', 288 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815439/Assets/Sponsors/RourkelaShines_i6uhfq.webp', 289 | alt: 'Rourkela Shines media partner of Hackodisha', 290 | }, 291 | ]; 292 | 293 | const BbsrData = [ 294 | { 295 | id: 5, 296 | className: 'logo-bbsrbuzz', 297 | link: 'http://www.bhubaneswarbuzz.com/', 298 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815443/Assets/Sponsors/Bbsrbuzz_lgxyz8.png', 299 | alt: 'Bhubaneshwar Buzz media partner of Hackodisha', 300 | }, 301 | ]; 302 | const eOdishaData = [ 303 | { 304 | id: 6, 305 | className: 'logo-eOdisha', 306 | link: 'https://eodisha.org/', 307 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815447/Assets/Sponsors/eodisha_e4dnjy.png', 308 | alt: 'eOdisha media partner of Hackodisha', 309 | }, 310 | ]; 311 | const noticeBoardData = [ 312 | { 313 | id: 7, 314 | className: 'logo-noticeboard', 315 | link: 'https://www.noticebard.com/', 316 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1629098925/Assets/Sponsors/noticeboard_ikjtfr.png', 317 | alt: 'Noticeboard media partner of Hackodisha', 318 | }, 319 | ]; 320 | 321 | 322 | const goldData = [ 323 | { 324 | id: 1, 325 | className: 'logo-large', 326 | link: 'https://devfolio.co/home/', 327 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815443/Assets/Sponsors/devfolio1_aijiot.webp', 328 | alt: 'Devfolio gold sponsor for Hackodisha', 329 | }, 330 | { 331 | id: 2, 332 | className: 'logo-large', 333 | link: 'https://www.digitalocean.com/', 334 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815443/Assets/Sponsors/DigitalOcean1_sf4env.webp', 335 | alt: 'Digital Ocean gold sponsor for Hackodisha', 336 | }, 337 | ]; 338 | 339 | const githubData = [ 340 | { 341 | id: 3, 342 | className: 'logo-github', 343 | link: 'https://github.com/', 344 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1628961683/Assets/Sponsors/GitHub_Logo_White_lmfoza.png', 345 | alt: 'Github gold sponsor for Hackodisha', 346 | }, 347 | ] 348 | 349 | const platinumData = [ 350 | { 351 | id: 1, 352 | className: 'logo-large', 353 | link: 'https://www.nitrkl.ac.in/', 354 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1627815444/Assets/Sponsors/diamondnit_j3ayw0.webp', 355 | alt: 'NITR Diamond Jubilee platinum sponsor of Hackodisha', 356 | }, 357 | { 358 | id: 1, 359 | className: 'logo-large', 360 | link: 'https://www.postman.com/', 361 | image: 'https://res.cloudinary.com/webwiznitr/image/upload/v1629744357/Assets/Sponsors/postman_qwfl1u.svg', 362 | alt: 'Postman platinum sponsor of Hackodisha', 363 | }, 364 | ]; 365 | 366 | export { 367 | bronzeData, 368 | silverData, 369 | goldData, 370 | platinumData, 371 | webwizData, 372 | scriptData, 373 | rourkData, 374 | OdishaData, 375 | rourkShData, 376 | BbsrData, 377 | eOdishaData, 378 | noticeBoardData, 379 | githubData, 380 | }; -------------------------------------------------------------------------------- /src/pages/sponsors.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import styled from 'styled-components'; 3 | import './style.css'; 4 | import { Row, Col } from 'react-grid-system'; 5 | import Raisebox from '../components/raisebox/raisebox'; 6 | import Card from '../components/card'; 7 | import { 8 | bronzeData, 9 | silverData, 10 | goldData, 11 | platinumData, 12 | scriptData, 13 | webwizData, 14 | rourkData, 15 | OdishaData, 16 | rourkShData, 17 | BbsrData, 18 | eOdishaData, 19 | noticeBoardData, 20 | githubData, 21 | } from './sponData'; 22 | 23 | const Sponsors1 = styled.h1` 24 | padding-top: 5%; 25 | font-weight: 900; 26 | color: #fff; 27 | font-size: 5rem; 28 | line-height: 0.8em; 29 | letter-spacing: -0.07em; 30 | @media screen and (max-width: 576px) { 31 | font-size: 4rem; 32 | } 33 | `; 34 | 35 | const Sponsors3 = styled.h3` 36 | font-weight: 800; 37 | color: #fff; 38 | font-size: 3rem; 39 | line-height: 0.8em; 40 | letter-spacing: -0.07em; 41 | `; 42 | 43 | const LogosBronze = styled.div` 44 | display: grid; 45 | grid-template-columns: repeat(4, 1fr); 46 | justify-content: space-between; 47 | @media only screen and (max-width: 767px) { 48 | display: grid; 49 | grid-template-columns: repeat(1, 1fr); 50 | } 51 | @media only screen and (min-width: 768px) and (max-width: 939px) { 52 | display: grid; 53 | grid-template-columns: repeat(2, 1fr); 54 | } 55 | @media only screen and (min-width: 940px) and (max-width: 1300px) { 56 | display: grid; 57 | grid-template-columns: repeat(3, 1fr); 58 | } 59 | `; 60 | 61 | function bronzeCard(bronzeData) { 62 | return ( 63 | 70 | ); 71 | } 72 | 73 | function makeCard(silverData) { 74 | return ( 75 | 76 | 83 | 84 | ); 85 | } 86 | 87 | function goldCard(goldData) { 88 | return ( 89 | 90 | 97 | 98 | ); 99 | } 100 | 101 | function githubCard(githubData) { 102 | return ( 103 | 104 | 111 | 112 | ); 113 | } 114 | 115 | function platinumCard(platinumData) { 116 | return ( 117 | 118 | 125 | 126 | ); 127 | } 128 | 129 | function scriptCard(scriptData) { 130 | return ( 131 | 138 | ); 139 | } 140 | 141 | function webwizCard(webwizData) { 142 | return ( 143 | 150 | ); 151 | } 152 | 153 | function rourkCard(rourkData) { 154 | return ( 155 | 162 | ); 163 | } 164 | 165 | function OdishaCard(OdishaData) { 166 | return ( 167 | 174 | ); 175 | } 176 | function noticeBoardCard(noticeBoardData) { 177 | return ( 178 | 185 | ); 186 | } 187 | 188 | 189 | 190 | function RShinesCard(rourkShData) { 191 | return ( 192 | 199 | ); 200 | } 201 | 202 | function BbsrbuzzCard(BbsrData) { 203 | return ( 204 | 211 | ); 212 | } 213 | function eOdishaCard(eOdishaData) { 214 | return ( 215 | 222 | ); 223 | } 224 | 225 | function Sponsors() { 226 | return ( 227 |
228 | {/* Platinum Sponsor */} 229 | 230 | 231 | Platinum Sponsor 232 | 233 | {platinumData.map(platinumCard)} 234 | 235 | 236 | {/* Gold Sponsor */} 237 | 238 | 239 | Gold Sponsors 240 | 241 | {goldData.map(goldCard)} 242 | {githubData.map(githubCard)} 243 | 244 | 245 | {/* Silver Sponsor */} 246 | 247 | 248 | Silver Sponsors 249 | 250 | {silverData.map(makeCard)} 251 | 252 | 253 | {/* Bronze Sponsors */} 254 | 255 | 256 | Bronze 257 | Sponsors 258 | 259 | {bronzeData.map(bronzeCard)} 260 | 261 | 262 | {/* Partners */} 263 | 264 | 265 | 266 | {scriptData.map(scriptCard)} 267 | 268 | 269 | Education Partner 270 | 271 | 272 | 273 | {webwizData.map(webwizCard)} 274 | 275 | 276 | Organizing Team 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | Media Partners 285 | 286 | 287 | 288 | {rourkData.map(rourkCard)} 289 | 290 | 291 | 292 | {OdishaData.map(OdishaCard)} 293 | 294 | 295 | 296 | {rourkShData.map(RShinesCard)} 297 | 298 | 299 | 300 | 301 | {BbsrData.map(BbsrbuzzCard)} 302 | 303 | 304 | {eOdishaData.map(eOdishaCard)} 305 | 306 | 307 | {noticeBoardData.map(noticeBoardCard)} 308 | 309 | 310 | 311 |
312 | ); 313 | } 314 | 315 | export default Sponsors; 316 | -------------------------------------------------------------------------------- /src/pages/style.css: -------------------------------------------------------------------------------- 1 | /*Sponsors Section*/ 2 | 3 | .logo-large { 4 | width: 100%; 5 | max-width: 450px; 6 | height: auto; 7 | margin: 0 auto; 8 | padding: 10px 10px; 9 | } 10 | 11 | .logo-mid { 12 | width: 100%; 13 | max-width: 300px; 14 | max-height: 150px; 15 | margin: 0 auto; 16 | padding: 10px 10px; 17 | } 18 | 19 | .logo-script { 20 | width: 100%; 21 | max-width: 400px; 22 | height: auto; 23 | margin: 0 auto; 24 | } 25 | 26 | .logo-webwiz { 27 | width: 100%; 28 | max-width: 295px; 29 | height: auto; 30 | margin: 0 auto; 31 | } 32 | 33 | .logo-rourkela360 { 34 | width: 100%; 35 | max-width: 260px; 36 | height: auto; 37 | margin: 0 auto; 38 | } 39 | 40 | .logo-odishanow { 41 | width: 100%; 42 | max-width: 260px; 43 | height: auto; 44 | margin: 0 auto; 45 | } 46 | 47 | .logo-rourkelashines { 48 | width: 100%; 49 | max-width: 260px; 50 | height: auto; 51 | margin: 0 auto; 52 | } 53 | 54 | .logo-bbsrbuzz { 55 | width: 100%; 56 | max-width: 360px; 57 | height: auto; 58 | margin: 0 auto; 59 | } 60 | .logo-eOdisha { 61 | width: 100%; 62 | max-width: 260px; 63 | height: auto; 64 | margin: 0 auto; 65 | } 66 | .logo-noticeboard { 67 | width: 100%; 68 | max-width: 260px; 69 | height: auto; 70 | margin: 0 auto; 71 | border-radius: 50%; 72 | } 73 | 74 | .logo_small { 75 | max-width: 290px; 76 | max-height: 150px; 77 | margin: 0 auto; 78 | padding: 20px; 79 | } 80 | 81 | .logo_speaker { 82 | max-width: 200px; 83 | max-height: 250px; 84 | margin: 0 auto; 85 | padding: 20px; 86 | } 87 | .logo-github { 88 | width: 100%; 89 | max-width: 450px; 90 | height: auto; 91 | margin: 0 auto; 92 | padding: 10px 10px; 93 | } 94 | 95 | .border_grad:hover { 96 | border: double 4px transparent; 97 | border-radius: 50%; 98 | background-image: linear-gradient(white, white), 99 | radial-gradient(circle at top left, #f00, #3020ff); 100 | background-origin: border-box; 101 | background-clip: content-box, border-box; 102 | } 103 | 104 | .border_grad { 105 | border-radius: 50%; 106 | border: 5px solid red; 107 | padding: 0.5px; 108 | transition: linear all 0.2s; 109 | } 110 | 111 | /* Prizes */ 112 | 113 | /*Prizes Section*/ 114 | .prizes_container { 115 | height: 100%; 116 | width: 100%; 117 | align-items: center; 118 | justify-content: center; 119 | display: flex; 120 | } 121 | .prizes_h1 { 122 | font-weight: 900; 123 | color: #fff; 124 | font-size: 6rem; 125 | line-height: 0.8em; 126 | letter-spacing: -0.07em; 127 | } 128 | 129 | .prize_box { 130 | background: #242526; 131 | box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); 132 | transition: 0.3s; 133 | padding: 1em; 134 | border-radius: 10px; 135 | max-width: 21rem; 136 | margin: 10px auto; 137 | margin-bottom: 3rem; 138 | height: 12rem; 139 | display: flex; 140 | justify-content: center; 141 | align-items: center; 142 | cursor:pointer; 143 | } 144 | .first_prize { 145 | font-size: 2.7rem; 146 | color: white; 147 | font-weight: 500; 148 | } 149 | .second_prize { 150 | font-size: 2.7rem; 151 | color: red; 152 | font-weight: 500; 153 | } 154 | .third_prize { 155 | font-size: 2.7rem; 156 | color: white; 157 | font-weight: 500; 158 | } 159 | 160 | /* pop_up*/ 161 | .modal { 162 | margin: 0; 163 | padding: 0; 164 | box-sizing: border-box; 165 | } 166 | 167 | .popup-content { 168 | margin: 0; 169 | background: #242526; 170 | width: 50%; 171 | color: #fff; 172 | max-width: 400px; 173 | border-radius: 10px; 174 | padding: 2rem; 175 | } 176 | .popup-arrow { 177 | color: rgb(255, 255, 255); 178 | } 179 | .popup-overlay { 180 | background: none; 181 | backdrop-filter: blur(5px); 182 | } 183 | [data-popup='tooltip'].popup-overlay { 184 | background: transparent; 185 | } 186 | .modal .close { 187 | position: absolute; 188 | font-size: 2.5rem; 189 | right: -12px; 190 | top: -27px; 191 | cursor: pointer; 192 | color: red; 193 | } 194 | @media screen and (max-width: 576px) { 195 | .prizes_h1 { 196 | font-size: 4rem; 197 | } 198 | .popup-content { 199 | width: 80%; 200 | max-width: fit-content; 201 | } 202 | } 203 | 204 | /* shedule page css starts */ 205 | .contents { 206 | padding: 1rem 0.5rem; 207 | } 208 | 209 | .content-section { 210 | flex-direction: column; 211 | padding: 2px 0; 212 | } 213 | .container-schedule { 214 | display: block; 215 | width: 100%; 216 | /* max-width: 1280px; */ 217 | margin: 0 auto; 218 | } 219 | .daily-schedule { 220 | margin-bottom: 1rem; 221 | margin: 1rem; 222 | 223 | padding: 0; 224 | border: 0; 225 | font-size: 100%; 226 | font: inherit; 227 | vertical-align: baseline; 228 | } 229 | .single-event { 230 | display: flex; 231 | flex-direction: row; 232 | margin-top: 0.6rem; 233 | } 234 | .date-time { 235 | background-color: #222; 236 | display: flex; 237 | flex-direction: column; 238 | padding: 1rem 1rem 1rem 5rem; 239 | text-align: right; 240 | white-space: nowrap; 241 | color: #fff; 242 | } 243 | .date { 244 | margin: 0; 245 | padding: 0; 246 | border: 0; 247 | font-size: 100%; 248 | font: inherit; 249 | vertical-align: baseline; 250 | color: #fff; 251 | } 252 | 253 | .time { 254 | font-size: 1.2rem; 255 | font-weight: 700; 256 | } 257 | .Hackathon { 258 | /* font-size: 100%; */ 259 | font: inherit; 260 | /* vertical-align: baseline; */ 261 | border-left: 5px solid #ff0000; 262 | } 263 | .description { 264 | padding-left: 2rem; 265 | background-color: #333; 266 | flex: 1; 267 | color: #fff; 268 | display: flex; 269 | justify-content: space-between; 270 | /* margin-left: 1rem; */ 271 | text-align: left; 272 | overflow: hidden; 273 | } 274 | 275 | .title { 276 | font-size: 1.1rem; 277 | letter-spacing: 0.1rem; 278 | font-weight: 699; 279 | } 280 | 281 | .name { 282 | margin: 0; 283 | padding: 0; 284 | border: 0; 285 | font-size: 100%; 286 | font: inherit; 287 | vertical-align: baseline; 288 | } 289 | 290 | .speaker { 291 | display: flex; 292 | align-items: center; 293 | } 294 | 295 | .details { 296 | display: flex; 297 | flex-direction: column; 298 | justify-content: center; 299 | line-height: 1.5rem; 300 | } 301 | 302 | @media (max-width: 767px) { 303 | .daily-schedule { 304 | padding: 0; 305 | margin: 0; 306 | } 307 | .content-section .contents .single-event .date-time { 308 | padding: 0.9rem; 309 | } 310 | .Hackathon { 311 | border-left: 2px solid #ff0000; 312 | } 313 | .description { 314 | padding-left: 0.8rem; 315 | } 316 | } 317 | -------------------------------------------------------------------------------- /src/pages/team.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import Raisebox from '../components/raisebox/raisebox'; 3 | import styled from 'styled-components'; 4 | import TeamData from '../components/Team/TeamData'; 5 | import '../components/Team/team.scss' 6 | import { Link } from 'react-router-dom'; 7 | 8 | const TeamGrid = styled.div` 9 | display: grid; 10 | grid-template-columns: 1fr 1fr 1fr 1fr; 11 | justify-items: center; 12 | min-width: 100%; 13 | min-height: 100%; 14 | height: 100%; 15 | margin-bottom: 100px; 16 | 17 | 18 | Background-color: transparent; 19 | 20 | @media screen and (max-width: 1500px) { 21 | grid-template-columns: 1fr 1fr 1fr; 22 | } 23 | 24 | @media screen and (max-width: 1000px) { 25 | grid-template-columns: 1fr 1fr; 26 | } 27 | 28 | @media screen and (max-width: 680px) { 29 | grid-template-columns: 1fr; 30 | } 31 | `; 32 | 33 | 34 | const TeamSection = () => { 35 | return ( 36 | 37 |

Team

38 | 39 | { 40 | TeamData.map(element => { 41 | if(element.id<=11) return ( 42 | 43 |
44 |  not found 45 | {element.Name} 46 | {element.Role} 47 | 48 |
49 | ) 50 | }) 51 | } 52 |
53 | know more 54 |
55 | 56 | ) 57 | } 58 | 59 | const Team = () => { 60 | return ( 61 | 62 | ) 63 | } 64 | 65 | export default Team; -------------------------------------------------------------------------------- /src/pages/tracks.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Raisebox from '../components/raisebox/raisebox.js'; 3 | import TracksCard from '../components/home-cards/HomeCard.jsx'; 4 | import { Container, Row, Col } from 'react-grid-system'; 5 | import styled from 'styled-components'; 6 | 7 | const AboutHeading = styled.div` 8 | height: 100%; 9 | width: 100%; 10 | display: flex; 11 | align-items: center; 12 | justify-content: center; 13 | `; 14 | 15 | const Abouth1 = styled.h1` 16 | font-weight: 900; 17 | color: #fff; 18 | font-size: 5rem; 19 | line-height: 1.1em; 20 | letter-spacing: -0.07em; 21 | 22 | @media screen and (max-width: 576px) { 23 | font-size: 4rem; 24 | } 25 | `; 26 | 27 | function home2() { 28 | return ( 29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | Let's solve the 38 | problems of Odisha 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 |
49 | ); 50 | } 51 | 52 | export default home2; 53 | -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = (onPerfEntry) => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import("web-vitals").then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import "@testing-library/jest-dom"; 6 | --------------------------------------------------------------------------------