├── public ├── index.css ├── LOGO.png ├── images │ ├── ai1.jpg │ ├── edu.png │ ├── env1.jpg │ ├── web31.jpg │ ├── open_inno1.png │ ├── health_care1.jpg │ └── Credit │ │ ├── Credit.txt │ │ ├── License free-env.txt │ │ └── License free-health_care.txt ├── static │ ├── 9edca546c286b30c74548112224b3b13 │ │ └── 85067 │ │ │ └── left-icon.webp │ └── dce241aacd13f70a3003c8187c0cddf0 │ │ └── 85067 │ │ └── right-icon.webp ├── page-data │ ├── 404.html │ │ └── page-data.json │ ├── index │ │ └── page-data.json │ ├── dev-404-page │ │ └── page-data.json │ └── sq │ │ └── d │ │ └── 2869923128.json ├── admin │ ├── index.html │ └── react.production.min.js └── index.html ├── src ├── react-app-env.d.ts ├── Module │ ├── Assets │ │ ├── boy.png │ │ ├── team.gif │ │ ├── team1.gif │ │ ├── teami │ │ │ ├── Ryah.jpg │ │ │ ├── manav.jpg │ │ │ ├── smit.jpeg │ │ │ ├── Nirali.jpeg │ │ │ ├── Aneri_Sonani.jpg │ │ │ ├── Ayush_Rudani.jpg │ │ │ ├── Parshwa_Mehta.jpg │ │ │ ├── Dharmesh_Poriya.jpg │ │ │ ├── Vashishth_Patel.jpg │ │ │ ├── Dhruvi_Sherathiya.jpg │ │ │ └── Zenisha_Savaliya.jpeg │ │ └── sponsorsLogos │ │ │ ├── do.png │ │ │ ├── gfg.png │ │ │ ├── ib.png │ │ │ ├── alan.png │ │ │ ├── celo.png │ │ │ ├── koii.png │ │ │ ├── tezos.png │ │ │ ├── certopus.png │ │ │ ├── cuvette.png │ │ │ ├── devfolio.png │ │ │ ├── digilogo.png │ │ │ ├── echo3d.png │ │ │ ├── filecoin.png │ │ │ ├── maruti.jpeg │ │ │ ├── polygon.png │ │ │ ├── postmn.JPG │ │ │ ├── prayosys.png │ │ │ ├── replit.png │ │ │ ├── shivam.JPG │ │ │ ├── sublime.png │ │ │ ├── taskade.png │ │ │ ├── wolfram.jpg │ │ │ ├── shivalika.JPG │ │ │ ├── jay_bhavani.jpeg │ │ │ ├── jay_maharaj.jpeg │ │ │ ├── shutterbugs.png │ │ │ ├── streamyard1.JPG │ │ │ └── pm.svg │ └── General.js ├── components │ ├── Footer │ │ ├── dsc.png │ │ ├── icons8-linkedin-2.svg │ │ ├── icons8-dev-post.svg │ │ ├── cross.svg │ │ ├── icons8-instagram.svg │ │ ├── icons8-mail.svg │ │ ├── footer.js │ │ ├── icons8-twitter.svg │ │ ├── icons8-discord.svg │ │ ├── footer.scss │ │ └── Logo_final.svg │ ├── Themes │ │ ├── boy.png │ │ ├── theme.css │ │ └── theme.jsx │ ├── navbar │ │ ├── LOGO.png │ │ ├── ham.svg │ │ ├── ham-c.svg │ │ ├── styles.scss │ │ └── App.js │ ├── Loading │ │ ├── preloader.gif │ │ ├── loading.css │ │ └── loading.js │ ├── logo-section │ │ ├── LOGO.png │ │ ├── logoSection.jsx │ │ └── logoSection.css │ ├── Main-page │ │ ├── pattern4.png │ │ ├── about.css │ │ └── HomePage.jsx │ ├── toggle.jsx │ │ ├── toggle.scss │ │ └── toggle.jsx │ ├── Routes │ │ ├── Twitter.jsx │ │ ├── Discord.jsx │ │ └── LinkedIn.jsx │ ├── team │ │ ├── ham.svg │ │ ├── team.css │ │ └── team.jsx │ ├── typing-effect │ │ ├── typing.js │ │ └── typing.css │ ├── prize tracks │ │ ├── prizes.jsx │ │ └── prizes.css │ ├── count-down │ │ ├── countDown.jsx │ │ └── countDown.css │ ├── media │ │ ├── media.css │ │ ├── icons8-mail.svg │ │ ├── media.jsx │ │ └── icons8-twitter.svg │ ├── Sponsors │ │ ├── sponsors.scss │ │ └── sponsors.jsx │ ├── Birds │ │ ├── birds.jsx │ │ └── birds.scss │ ├── FAQ │ │ ├── faq.css │ │ └── faq.jsx │ ├── Timeline │ │ ├── Timeline.css │ │ └── Timeline.jsx │ └── Top-division-components │ │ ├── Top-division-components.jsx │ │ └── top-division-c.css ├── App.test.js └── index.js ├── .prettierignore ├── .prettierrc ├── .gitignore ├── @types └── calenderState.types.ts ├── README.md ├── tsconfig.json ├── LICENSE └── package.json /public/index.css: -------------------------------------------------------------------------------- 1 | #loader{ 2 | transition: 0.8s; 3 | } -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .cache 2 | package.json 3 | package-lock.json 4 | public -------------------------------------------------------------------------------- /public/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/public/LOGO.png -------------------------------------------------------------------------------- /public/images/ai1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/public/images/ai1.jpg -------------------------------------------------------------------------------- /public/images/edu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/public/images/edu.png -------------------------------------------------------------------------------- /public/images/env1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/public/images/env1.jpg -------------------------------------------------------------------------------- /public/images/web31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/public/images/web31.jpg -------------------------------------------------------------------------------- /src/Module/Assets/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/boy.png -------------------------------------------------------------------------------- /src/Module/Assets/team.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/team.gif -------------------------------------------------------------------------------- /public/images/open_inno1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/public/images/open_inno1.png -------------------------------------------------------------------------------- /src/Module/Assets/team1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/team1.gif -------------------------------------------------------------------------------- /src/components/Footer/dsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/components/Footer/dsc.png -------------------------------------------------------------------------------- /src/components/Themes/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/components/Themes/boy.png -------------------------------------------------------------------------------- /public/images/health_care1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/public/images/health_care1.jpg -------------------------------------------------------------------------------- /src/components/navbar/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/components/navbar/LOGO.png -------------------------------------------------------------------------------- /src/Module/Assets/teami/Ryah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/Ryah.jpg -------------------------------------------------------------------------------- /src/Module/Assets/teami/manav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/manav.jpg -------------------------------------------------------------------------------- /src/Module/Assets/teami/smit.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/smit.jpeg -------------------------------------------------------------------------------- /src/Module/Assets/teami/Nirali.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/Nirali.jpeg -------------------------------------------------------------------------------- /src/components/Loading/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/components/Loading/preloader.gif -------------------------------------------------------------------------------- /src/components/logo-section/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/components/logo-section/LOGO.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/do.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/gfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/gfg.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/ib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/ib.png -------------------------------------------------------------------------------- /src/components/Main-page/pattern4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/components/Main-page/pattern4.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/alan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/alan.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/celo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/celo.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/koii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/koii.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/tezos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/tezos.png -------------------------------------------------------------------------------- /src/Module/Assets/teami/Aneri_Sonani.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/Aneri_Sonani.jpg -------------------------------------------------------------------------------- /src/Module/Assets/teami/Ayush_Rudani.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/Ayush_Rudani.jpg -------------------------------------------------------------------------------- /src/Module/Assets/teami/Parshwa_Mehta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/Parshwa_Mehta.jpg -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/certopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/certopus.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/cuvette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/cuvette.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/devfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/devfolio.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/digilogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/digilogo.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/echo3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/echo3d.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/filecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/filecoin.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/maruti.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/maruti.jpeg -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/polygon.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/postmn.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/postmn.JPG -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/prayosys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/prayosys.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/replit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/replit.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/shivam.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/shivam.JPG -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/sublime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/sublime.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/taskade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/taskade.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/wolfram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/wolfram.jpg -------------------------------------------------------------------------------- /src/Module/Assets/teami/Dharmesh_Poriya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/Dharmesh_Poriya.jpg -------------------------------------------------------------------------------- /src/Module/Assets/teami/Vashishth_Patel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/Vashishth_Patel.jpg -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/shivalika.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/shivalika.JPG -------------------------------------------------------------------------------- /src/Module/Assets/teami/Dhruvi_Sherathiya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/Dhruvi_Sherathiya.jpg -------------------------------------------------------------------------------- /src/Module/Assets/teami/Zenisha_Savaliya.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/teami/Zenisha_Savaliya.jpeg -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/jay_bhavani.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/jay_bhavani.jpeg -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/jay_maharaj.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/jay_maharaj.jpeg -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/shutterbugs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/shutterbugs.png -------------------------------------------------------------------------------- /src/Module/Assets/sponsorsLogos/streamyard1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/src/Module/Assets/sponsorsLogos/streamyard1.JPG -------------------------------------------------------------------------------- /public/static/9edca546c286b30c74548112224b3b13/85067/left-icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/public/static/9edca546c286b30c74548112224b3b13/85067/left-icon.webp -------------------------------------------------------------------------------- /public/static/dce241aacd13f70a3003c8187c0cddf0/85067/right-icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xvashishth/duhacks/HEAD/public/static/dce241aacd13f70a3003c8187c0cddf0/85067/right-icon.webp -------------------------------------------------------------------------------- /public/page-data/404.html/page-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "componentChunkName": "component---src-pages-404-tsx", 3 | "path": "/404.html", 4 | "result": {"pageContext":{}}, 5 | "staticQueryHashes": []} -------------------------------------------------------------------------------- /public/page-data/index/page-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "componentChunkName": "component---src-pages-index-tsx", 3 | "path": "/", 4 | "result": {"pageContext":{}}, 5 | "staticQueryHashes": ["2869923128"]} -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none", 3 | "bracketSpacing": false, 4 | "arrowParens": "avoid", 5 | "singleQuote": true, 6 | "printWidth": 80, 7 | "useTabs": false, 8 | "tabWidth": 2, 9 | "semi": true 10 | } 11 | -------------------------------------------------------------------------------- /src/components/toggle.jsx/toggle.scss: -------------------------------------------------------------------------------- 1 | .toggle_btn{ 2 | position: absolute; 3 | right: 0vh; 4 | top: 1.6rem; 5 | } 6 | $breakpoint-tablet: 390px; 7 | @media (max-width: $breakpoint-tablet) { 8 | .toggle_btn{ 9 | top: 1.2rem; 10 | }} 11 | -------------------------------------------------------------------------------- /src/components/Loading/loading.css: -------------------------------------------------------------------------------- 1 | .load { 2 | display: flex; 3 | justify-content: center; 4 | align-items: center; 5 | background: white; 6 | height: 100%; 7 | width: 100%; 8 | top: 0; 9 | position: fixed; 10 | z-index: 200000; 11 | } 12 | 13 | -------------------------------------------------------------------------------- /src/components/Routes/Twitter.jsx: -------------------------------------------------------------------------------- 1 | import React, {useEffect} from 'react'; 2 | 3 | function Twitter() { 4 | useEffect(() => { 5 | window.location.href = 'https://twitter.com/DUHacks'; 6 | }, []); 7 | return
; 8 | } 9 | 10 | export default Twitter; 11 | -------------------------------------------------------------------------------- /src/components/Routes/Discord.jsx: -------------------------------------------------------------------------------- 1 | import React, {useEffect} from 'react'; 2 | 3 | function Discord() { 4 | useEffect(() => { 5 | window.location.href = 'https://discord.gg/cvHPEK7U3v'; 6 | }, []); 7 | return
; 8 | } 9 | 10 | export default Discord; 11 | -------------------------------------------------------------------------------- /src/components/Routes/LinkedIn.jsx: -------------------------------------------------------------------------------- 1 | import React, {useEffect} from 'react'; 2 | 3 | function Linkedin() { 4 | useEffect(() => { 5 | window.location.href = 'https://www.linkedin.com/company/duhacks/'; 6 | }, []); 7 | return
; 8 | } 9 | 10 | export default Linkedin; 11 | -------------------------------------------------------------------------------- /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/Loading/loading.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import loadergif from '../Loading/preloader.gif'; 3 | import './loading.css'; 4 | 5 | export default function LOADER(props) { 6 | return ( 7 |
8 | loader 9 |
10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /public/page-data/dev-404-page/page-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "componentChunkName": "component---cache-dev-404-page-js", 3 | "path": "/dev-404-page/", 4 | "result": {"data":{"allSiteFunction":{"nodes":[]},"allSitePage":{"nodes":[{"path":"/404/"},{"path":"/404.html"},{"path":"/"}]}},"pageContext":{}}, 5 | "staticQueryHashes": []} -------------------------------------------------------------------------------- /src/components/navbar/ham.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/team/ham.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/typing-effect/typing.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Typed from 'react-typed'; 3 | import './typing.css'; 4 | import {TOP_SECTION} from '../../Module/General'; 5 | 6 | export default function MytypedComponent() { 7 | return ( 8 |
9 |

10 | 11 |

12 |
13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /.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 | .cache/ 8 | package-lock.json 9 | # testing 10 | /coverage 11 | 12 | # production 13 | /build 14 | 15 | # misc 16 | .DS_Store 17 | .env.local 18 | .env.development.local 19 | .env.test.local 20 | .env.production.local 21 | 22 | npm-debug.log* 23 | yarn-debug.log* 24 | yarn-error.log* 25 | -------------------------------------------------------------------------------- /src/components/Footer/icons8-linkedin-2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/Credit/Credit.txt: -------------------------------------------------------------------------------- 1 | ENV => Environment vector created by storyset - www.freepik.com 2 | WEB3 => Crypto exchange vector created by macrovector - www.freepik.com 3 | EDU => https://dribbble.com/shots/6564686-Concept-for-web-page-Investment-in-education?utm_source=Pinterest_Shot&utm_campaign=Magura&utm_content=Concept+for+web+page.+Investment+in+education&utm_medium=Social_Share -------------------------------------------------------------------------------- /src/components/prize tracks/prizes.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import './prizes.css'; 3 | 4 | function PrizeHeading(props) { 5 | return ( 6 |
7 |

{props.type}

8 |
9 | ); 10 | } 11 | 12 | function FirstPrize(props) { 13 | return ( 14 |
15 | {props.icon} 16 |

{props.type}

17 |

{props.content}

18 |
19 | ); 20 | } 21 | 22 | export {FirstPrize, PrizeHeading}; 23 | -------------------------------------------------------------------------------- /src/components/toggle.jsx/toggle.jsx: -------------------------------------------------------------------------------- 1 | import React, {useState} from "react"; 2 | import "./toggle.scss"; 3 | 4 | import DarkModeToggle from "react-dark-mode-toggle"; 5 | 6 | export default () => { 7 | const [isDarkMode, setIsDarkMode] = useState(() => false); 8 | return ( 9 |
10 | 16 |
17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /public/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Content Manager 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/components/count-down/countDown.jsx: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import './countDown.css'; 3 | import Countdown from 'react-countdown'; 4 | 5 | export default function CountDown() { 6 | return ( 7 |
8 |

9 | 14 | 15 |

Join our discord

16 |
17 |

18 |
19 | ); 20 | } 21 | -------------------------------------------------------------------------------- /src/components/count-down/countDown.css: -------------------------------------------------------------------------------- 1 | .counter{ 2 | display: block; 3 | background-color: white; 4 | color: black; 5 | width: fit-content; 6 | height: fit-content; 7 | padding: 0px 30px; 8 | border-radius: 8px; 9 | text-align: center; 10 | margin: 30px 0; 11 | border: 1px solid rgb(255, 194, 252); 12 | font-weight: 300; 13 | } 14 | .counter p{ 15 | font-family: 'Montserrat', sans-serif; 16 | font-weight: 300; 17 | display: inline-block; 18 | } 19 | @media (max-width: 570px){ 20 | .counter{ 21 | margin: 30px auto; 22 | } 23 | } -------------------------------------------------------------------------------- /src/components/typing-effect/typing.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&display=swap'); 4 | 5 | .typing-div{ 6 | margin-bottom: 5rem; 7 | margin-top: 2rem; 8 | 9 | } 10 | .typing-div h1{ 11 | font-size: 5rem; 12 | font-weight: 300; 13 | margin: 0; 14 | text-align: left; 15 | } 16 | 17 | @media (max-width: 570px){ 18 | .typing-div h1{ 19 | font-size: 3rem; 20 | font-weight: 700; 21 | text-align: center; 22 | } 23 | } 24 | @media (max-width: 330px){ 25 | .typing-div h1{ 26 | font-size: 2.5rem; 27 | font-weight: 700; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/components/media/media.css: -------------------------------------------------------------------------------- 1 | .media { 2 | color: white; 3 | } 4 | .single { 5 | display: inline-block; 6 | margin-left: 25px; 7 | margin-right: 25px; 8 | } 9 | .single a { 10 | color: rgba(231, 228, 228); 11 | /* position: relative; */ 12 | /* top: 0px; */ 13 | transition: top 0.2s linear; 14 | } 15 | .single a:hover { 16 | color: white; 17 | top: -5px; 18 | } 19 | @media (max-width: 570px) { 20 | .single { 21 | display: inline-block; 22 | margin-top: 50px; 23 | margin-left: 14.5px; 24 | margin-right: 14.5px; 25 | } 26 | .single img { 27 | width: 70%; 28 | margin-top: 120px; 29 | margin-left: 8px; 30 | margin-right: 8px; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/components/Footer/icons8-dev-post.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Footer/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/navbar/ham-c.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /@types/calenderState.types.ts: -------------------------------------------------------------------------------- 1 | export interface EventType { 2 | title: string; 3 | timings: string; 4 | content: string; 5 | image?: string; 6 | ended: boolean; 7 | previousYoutubeRecording?: string; // If event ended provide recording 8 | organizer?: string; 9 | role?:string; 10 | company?:string; 11 | } 12 | 13 | export interface EventArrayType { 14 | day: number; 15 | event: boolean; 16 | events: EventType[]; 17 | dumpDay:boolean; 18 | } 19 | 20 | 21 | // This is Global state types (i.e store type for calender global store) 22 | export interface CalenderStateTypes { 23 | index: number; 24 | selectedData: EventType[]; 25 | selectedEvent:EventType, 26 | month: number; 27 | year: number; 28 | dates: EventArrayType[]; 29 | } -------------------------------------------------------------------------------- /src/components/Footer/icons8-instagram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import NAV from "./components/navbar/App"; 4 | import LOADER from './components/Loading/loading'; 5 | 6 | // const rootElement = document.getElementById('body'); 7 | // const footer = document.getElementById('footer'); 8 | 9 | // ReactDOM.render( 10 | // 11 | // 12 | //