├── .eslintrc.json ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── components ├── About.tsx ├── CommunityPatners.tsx ├── FAQ.tsx ├── HomeHero.tsx ├── Layouts │ ├── Footer.tsx │ ├── Layout.tsx │ ├── MobileDropdown.tsx │ └── Navbar.tsx ├── Organizations.tsx ├── Patners.tsx ├── Project.tsx └── Timeline.tsx ├── contexts └── UIContext.tsx ├── contributing.md ├── lib ├── FAQ.ts ├── communityPartners.ts ├── constants.ts ├── organizations.ts ├── projects.ts ├── sponsors.ts └── utilityFunctions.ts ├── next-seo.config.js ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ └── hello.ts ├── fonts │ └── Vanilla.otf ├── index.tsx └── projects.tsx ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── assets │ ├── background │ │ ├── CommunityPartner.gif │ │ ├── FAQ.gif │ │ ├── FooterBG.png │ │ ├── OrganizationBG.gif │ │ ├── PatnerBG.gif │ │ ├── ProjectBG.gif │ │ ├── TimelineBG.gif │ │ ├── bgClean.png │ │ ├── bgClean2.png │ │ ├── bgMobile.jpg │ │ └── elements.png │ ├── community │ │ ├── Partner (1).png │ │ ├── Partner (10).png │ │ ├── Partner (11).png │ │ ├── Partner (12).png │ │ ├── Partner (13).png │ │ ├── Partner (14).png │ │ ├── Partner (15).png │ │ ├── Partner (16).png │ │ ├── Partner (17).png │ │ ├── Partner (18).png │ │ ├── Partner (19).png │ │ ├── Partner (2).png │ │ ├── Partner (20).png │ │ ├── Partner (21).png │ │ ├── Partner (22).png │ │ ├── Partner (23).png │ │ ├── Partner (24).png │ │ ├── Partner (25).png │ │ ├── Partner (26).png │ │ ├── Partner (27).png │ │ ├── Partner (28).png │ │ ├── Partner (29).png │ │ ├── Partner (3).png │ │ ├── Partner (30).png │ │ ├── Partner (31).png │ │ ├── Partner (32).png │ │ ├── Partner (33).png │ │ ├── Partner (34).png │ │ ├── Partner (35).png │ │ ├── Partner (36).png │ │ ├── Partner (37).png │ │ ├── Partner (38).png │ │ ├── Partner (39).png │ │ ├── Partner (4).png │ │ ├── Partner (40).png │ │ ├── Partner (5).png │ │ ├── Partner (6).png │ │ ├── Partner (7).png │ │ ├── Partner (8).png │ │ └── Partner (9).png │ ├── creatures │ │ ├── ProjectsGrid │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── birds (1).png │ │ ├── birds (2).png │ │ ├── birds (3).png │ │ ├── cloud (1).png │ │ ├── cloud (2).png │ │ ├── cloud (3).png │ │ ├── cloud (4).png │ │ ├── cloud (5).png │ │ ├── cloud (6).png │ │ ├── fish.png │ │ ├── fishBgLeafs.png │ │ ├── iceberg_upper.png │ │ ├── iceburg.png │ │ ├── left_berg.png │ │ ├── moon.png │ │ ├── right_berg.png │ │ ├── wave.png │ │ └── winterofcode.png │ ├── logo.png │ ├── organizations │ │ ├── GDevelop.png │ │ ├── asyncAPI.png │ │ ├── devscript.png │ │ ├── eduhub.png │ │ ├── gdsc.png │ │ ├── gitaInit.png │ │ ├── hfc.png │ │ ├── mojaGlobal.png │ │ ├── openCY.png │ │ ├── openemr.png │ │ ├── orgA.png │ │ ├── polyaxon.png │ │ ├── samagraX.png │ │ ├── styava.png │ │ └── terra.png │ └── sponsors │ │ ├── Auth0.png │ │ ├── Polygon.png │ │ ├── StyavaDev.png │ │ ├── cblogo.png │ │ ├── devfolio.png │ │ ├── echo3D.png │ │ ├── filecoin.png │ │ ├── github.png │ │ ├── jetBrains.png │ │ ├── newton.png │ │ ├── replit.png │ │ └── solana.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico └── site.webmanifest ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | .pnpm-debug.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /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 contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | - Welcoming and inclusive language 12 | - Being respectful of differing viewpoints and experiences 13 | - Gracefully accepting constructive criticism 14 | - Focusing on what is best for the community 15 | - Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | - The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | - Trolling, insulting/derogatory comments, and personal or political attacks 21 | - Public or private harassment 22 | - Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | - Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at dsc.iiitkalyani@gmail.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 37 | 38 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 39 | 40 | ### Attribution 41 | This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 42 | 43 | For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faq -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Google Developer Student Club - IIIT Kalyani 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Getting Started with Winter of Code 3.0

2 |
3 | 4 |
5 | 6 | [![Welcome to my profile](https://img.shields.io/badge/Hello,Programmer!-Welcome-blue.svg?style=flat&logo=github)](https://github.com/GDSC-IIIT-Kalyani) 7 | [![Open Source Love](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/GDSC-IIIT-Kalyani/Winter-of-Code-3.0-frontend) 8 | ![License](https://img.shields.io/badge/License-Apache-red.svg) 9 | ![Stars](https://img.shields.io/github/stars/GDSC-IIIT-Kalyani/Winter-of-Code-3.0-frontend?style=flat&logo=github) 10 | ![Forks](https://img.shields.io/github/forks/GDSC-IIIT-Kalyani/Winter-of-Code-3.0-frontend?style=flat&logo=github) 11 | 12 |
13 | 14 |
15 | winterofcode_logo 16 |
17 | 18 |
19 | 20 |
21 | 22 | 23 | 24 | react_logo 25 | js 26 | 27 | check 28 | 29 |
30 | 31 |

32 | Official website for Winter of Code 3.0 organised by IIIT Kalyani. 33 |

34 | 35 | ## **Getting Started** 36 | [![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/GDSC-IIIT-Kalyani/Winter-of-Code-3.0-frontend?logo=github)](https://GDSC-IIIT-Kalyani/Winter-of-Code-3.0-frontend/) [![GitHub commit activity](https://img.shields.io/github/commit-activity/m/GDSC-IIIT-Kalyani/Winter-of-Code-3.0-frontend?color=bluevoilet&logo=github)](https://github.com/GDSC-IIIT-Kalyani/Winter-of-Code-3.0-frontend/commits/) [![GitHub repo size](https://img.shields.io/github/repo-size/GDSC-IIIT-Kalyani/Winter-of-Code-3.0-frontend?logo=github)](https://github.com/GDSC-IIIT-Kalyani/Winter-of-Code-3.0-frontend) 37 | 38 | For the quick start, you can follow the steps below: 39 | 40 | 1. Star this repository. 41 | 2. Fork this repository. 42 | 3. Clone the **forked** repository. 43 | 44 | ```yml 45 | git clone https://github.com//Winter-of-Code-3.0-frontend 46 | ``` 47 | 48 | 3. Navigate to the project directory. 49 | 50 | ```py 51 | cd Winter-of-Code-3.0-frontend 52 | ``` 53 | 54 | 4. Create a new branch. 55 | 56 | ```yml 57 | git checkout -b 58 | ``` 59 | 60 | Run the following command to install the required dependencies. 61 | 62 | 1. `npm install ` - install the required dependencies 63 | 2. `npm start` - start the development server 64 | 3. Open http://localhost:3000 in your browser 65 | 66 | 4. Contribute 67 | 68 | 5. Stage your changes and commit 69 | 70 | ```css 71 | git add -a 72 | 73 | git commit -m "" 74 | ``` 75 | 76 | 7. Push your local commits to the remote repo. 77 | 78 | ```yml 79 | git push -u origin 80 | ``` 81 | 82 | 8. Create a Pull-Request to `main`. 83 | 84 | 9. Congratulations! 🎉 you've made your contribution to Winter-of-Code-3.0-frontend. 85 | 86 |

Contributing

87 | 88 |

89 | Thank you for your interest in contributing to our Repo! Pull requests are welcome. For fixing typos, please make a PR with your fixes. For other contributions, we suggest you to read our contribution guidelines to see how you can contribute to this project. We are happy for every contribution. 90 |


91 |

92 | 93 |

Issues & Pull Requests

94 | 95 | Before making pull requests please look at our contributing guidelines (coming soon). You can start working on the issue which are mentioned in issues section. Just drop a comment before working on the issue. Thank you! 96 | 97 | # License & Copyright 98 | 99 | The code is this repo is licensed under the MIT License. Feel free to use and share it as per the license. 100 | 101 | # ✨ Contributors 102 | 103 | 104 | 105 | 106 | 107 | 108 |
109 | love 110 | how 111 |
112 | -------------------------------------------------------------------------------- /components/About.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { motion } from 'framer-motion'; 3 | import Image from 'next/image'; 4 | import Link from 'next/link'; 5 | 6 | type Props = {}; 7 | 8 | const About = (props: Props) => { 9 | return ( 10 |
11 | Home Background 2 17 | 18 | Wave 25 | 26 |
27 | 36 | ABOUT WOC 37 | 38 | 48 | 49 | GDSC IIIT Kalyani brings to you, yet again, its open-source program 50 | Winter of Code 3.0 with collaborative efforts from 30+ Google 51 | Developer Student Clubs. The program will last for a period of 45 52 | days and is based on the lines of GSoC. Student applicants are 53 | required to send their proposals to organizations to work on their 54 | open-source projects while their mentor evaluate them over a course 55 | of the event. If you dont have a resume here is a template that you 56 | may use: 57 | 58 | 64 | Resume Template 65 | 66 | 67 |
68 |
69 | ); 70 | }; 71 | 72 | export default About; 73 | -------------------------------------------------------------------------------- /components/CommunityPatners.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image'; 2 | import React from 'react'; 3 | import { motion } from 'framer-motion'; 4 | type Props = {}; 5 | 6 | const CommunityPatners = (props: Props) => { 7 | return ( 8 |
12 | Community Partner BG 18 | 19 | 28 | Community Partners 29 | 30 | 31 |
32 |
33 | {Array.from(Array(40).keys()).map((i) => { 34 | return ( 35 |
39 | {`Partner 45 |
46 | ); 47 | })} 48 |
49 |
50 |
51 | ); 52 | }; 53 | 54 | export default CommunityPatners; 55 | -------------------------------------------------------------------------------- /components/FAQ.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image'; 2 | import React, { useState } from 'react'; 3 | import { motion } from 'framer-motion'; 4 | import faqData from '@/lib/FAQ'; 5 | 6 | type Props = {}; 7 | type FAQ = { 8 | question: string; 9 | answer: string; 10 | }; 11 | 12 | const FAQ = (props: Props) => { 13 | const FAQCard = ({ 14 | faq, 15 | number, 16 | handleClick, 17 | }: { 18 | faq: FAQ; 19 | number: number; 20 | handleClick: () => void; 21 | }) => { 22 | const { answer, question } = faq; 23 | return ( 24 |
25 | 26 | {question} 27 | 28 |
29 |

{answer}

30 |
31 |
32 | ); 33 | }; 34 | 35 | const [currentOpen, setCurrentOpen] = useState(); 36 | 37 | return ( 38 |
42 | FAQ BG 48 | 49 |
50 |
51 |

Frequently

52 |

Asked Questions

53 |
54 | 55 |
56 |
57 | {faqData.map((faq, idx) => { 58 | return ( 59 | { 64 | setCurrentOpen(idx); 65 | }} 66 | /> 67 | ); 68 | })} 69 |
70 |
71 |
72 |
73 | ); 74 | }; 75 | 76 | export default FAQ; 77 | -------------------------------------------------------------------------------- /components/HomeHero.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image'; 2 | import React from 'react'; 3 | 4 | type Props = {}; 5 | 6 | const HomeHero = (props: Props) => { 7 | return ( 8 |
9 | Home Background 15 | 16 | Ice Burg 23 | 24 | Left Ice Burg 31 | 32 | Right Ice Burg 39 | 40 | Winter Of Code 47 | 48 | Clouds 4 55 | 56 | Clouds 1 63 | 64 | Clouds 2 71 | 72 | Moon 79 | 80 | Birds 2 87 | 88 | Birds 1 95 |
96 | ); 97 | }; 98 | 99 | export default HomeHero; 100 | -------------------------------------------------------------------------------- /components/Layouts/Footer.tsx: -------------------------------------------------------------------------------- 1 | import { gdscSocial } from '@/lib/constants'; 2 | import Image from 'next/image'; 3 | import React from 'react'; 4 | import { SocialIcon } from 'react-social-icons'; 5 | 6 | type Props = {}; 7 | 8 | const Footer = (props: Props) => { 9 | return ( 10 |
11 | Footer BG 17 | 18 |
19 |

WOC 3.0

20 |

Brought to you by

21 |

22 | GOOGLE DEVELOPER STUDENT CLUB IIIT KALYANIw 23 |

24 |
25 | 26 |
27 | {gdscSocial.map((social, idx) => { 28 | return ( 29 | 35 | ); 36 | })} 37 |
38 |

39 | © GDSC IIIT Kalyani {new Date().getFullYear() - 1}- 40 | {new Date().getFullYear()} 41 |

42 |
43 | ); 44 | }; 45 | 46 | export default Footer; 47 | -------------------------------------------------------------------------------- /components/Layouts/Layout.tsx: -------------------------------------------------------------------------------- 1 | import React, { ReactNode } from 'react'; 2 | import Footer from './Footer'; 3 | import Navbar from './Navbar'; 4 | 5 | type Props = { 6 | children: ReactNode; 7 | }; 8 | 9 | const Layout = ({ children }: Props) => { 10 | return ( 11 | <> 12 | 13 |
{children}
14 |