├── LICENSE
├── README.md
├── client
├── .gitignore
├── README.md
├── package-lock.json
├── package.json
├── public
│ ├── gdsc-logo.png
│ └── index.html
├── src
│ ├── App.css
│ ├── App.jsx
│ ├── App.test.js
│ ├── DarkModeContext.js
│ ├── Layout
│ │ └── Layout.jsx
│ ├── assets
│ │ ├── illustrations
│ │ │ ├── events-figma.png
│ │ │ ├── events-hero-1.png
│ │ │ ├── events-partner-1.png
│ │ │ ├── events-partner-2.png
│ │ │ ├── events-partner-3.png
│ │ │ ├── events-partner-bg.png
│ │ │ ├── events-partners-bg-main.png
│ │ │ ├── events-past.png
│ │ │ ├── footer-left-1.png
│ │ │ ├── footer-left-2.png
│ │ │ ├── footer-right-1.png
│ │ │ ├── footer-right-2.png
│ │ │ ├── home-about-dark.png
│ │ │ ├── home-about.png
│ │ │ ├── home-blog-1.png
│ │ │ ├── home-blog-2.png
│ │ │ ├── home-faq-1.png
│ │ │ ├── home-faq-2.png
│ │ │ ├── home-goal-1.png
│ │ │ ├── home-goal-2-wrong.png
│ │ │ ├── home-goal-2.png
│ │ │ ├── home-hero.png
│ │ │ └── speaker.png
│ │ └── logos
│ │ │ ├── Calendar.png
│ │ │ ├── Clock.png
│ │ │ ├── GitHub.png
│ │ │ ├── Hashnode.png
│ │ │ ├── Instagram.png
│ │ │ ├── LinkedIn.png
│ │ │ ├── Map-Marker.png
│ │ │ ├── TwitterX.png
│ │ │ ├── Website.png
│ │ │ ├── gdsc-dark.webp
│ │ │ └── gdsc-light.webp
│ ├── components
│ │ ├── .gitkeep
│ │ ├── Footer
│ │ │ ├── Footer.jsx
│ │ │ └── Footer.module.css
│ │ └── Navbar
│ │ │ ├── Navbar.jsx
│ │ │ └── Navbar.module.css
│ ├── data
│ │ ├── EventDesc.js
│ │ └── PastEventData.js
│ ├── db.js
│ ├── index.css
│ ├── index.js
│ ├── logo.svg
│ ├── pages
│ │ ├── Events-Details
│ │ │ ├── Desc.jsx
│ │ │ ├── Details.jsx
│ │ │ ├── EventsDetails.jsx
│ │ │ └── Sponsors.jsx
│ │ ├── Events
│ │ │ ├── CurrentEvent.jsx
│ │ │ ├── Events.jsx
│ │ │ ├── Partners.jsx
│ │ │ └── PastEvent.jsx
│ │ ├── Home
│ │ │ ├── About.jsx
│ │ │ ├── Blogs.jsx
│ │ │ ├── Goals.jsx
│ │ │ ├── Home.jsx
│ │ │ ├── Intro.jsx
│ │ │ └── Qna.jsx
│ │ └── Team.jsx
│ ├── reportWebVitals.js
│ ├── resolvers.js
│ ├── schema.graphql
│ ├── setupTests.js
│ └── static
│ │ ├── .gitkeep
│ │ ├── GitHub-Dark.png
│ │ ├── GitHub.png
│ │ ├── Hashnode.png
│ │ ├── Instagram-Dark.png
│ │ ├── Instagram.png
│ │ ├── LinkedIn-Dark.png
│ │ ├── LinkedIn.png
│ │ ├── TwitterX-Dark.png
│ │ ├── TwitterX.png
│ │ ├── Website-Dark.png
│ │ ├── Website.png
│ │ ├── gdscLight.webp
│ │ ├── homeHero-transp.png
│ │ ├── homeHero.png
│ │ └── speaker.png
└── tailwind.config.js
└── ui-ux-design
├── Event Details.png
├── Events.png
├── Home.png
└── Team.png
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2023 Google Developers Student Club, UPES
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 | # UPES GDSC 2023 Official Website Repository
2 |
3 | Welcome to the official repository for the UPES GDSC 2023 official website. This repository hosts the source code and design files for the website.
4 |
5 | ## Tech Stack
6 |
7 | MERN Stack
8 |
9 | ## UI/UX Design Files
10 |
11 | The UI/UX design files for the website have already been uploaded to this repository. You can find them in the [`ui-ux-design`](./ui-ux-design) directory.
12 |
13 | ## Contribution Guidelines
14 |
15 | We welcome contributions from the community to enhance and improve the website. To contribute, please follow these steps:
16 |
17 | 1. Fork the repository to your own GitHub account.
18 |
19 | 2. Star the repositry
20 |
21 | 3. Clone the forked repository to your local machine:
22 | ```bash
23 | git clone https://github.com/GDSC-UPES/GDSC-UPES-Website.git
24 |
25 | ## Committing Changes to the Development Branch
26 |
27 | We follow a branching strategy where all contributions are made to the `development` branch. Please follow these steps to commit your changes to the `development` branch:
28 |
29 | 1. **Clone the Repository:**
30 |
31 | 2. Switch Branches:
32 | ```bash
33 | git checkout development
34 |
35 | 3. Commit and push your changes:
36 | ```bash
37 | git add .
38 | git commit -m "Your detailed commit message"
39 | git push origin development
40 |
--------------------------------------------------------------------------------
/client/.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 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/client/README.md:
--------------------------------------------------------------------------------
1 | # Getting Started with Create React App
2 |
3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4 |
5 | ## Available Scripts
6 |
7 | In the project directory, you can run:
8 |
9 | ### `npm start`
10 |
11 | Runs the app in the development mode.\
12 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
13 |
14 | The page will reload when you make changes.\
15 | You may also see any lint errors in the console.
16 |
17 | ### `npm test`
18 |
19 | Launches the test runner in the interactive watch mode.\
20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21 |
22 | ### `npm run build`
23 |
24 | Builds the app for production to the `build` folder.\
25 | It correctly bundles React in production mode and optimizes the build for the best performance.
26 |
27 | The build is minified and the filenames include the hashes.\
28 | Your app is ready to be deployed!
29 |
30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31 |
32 | ### `npm run eject`
33 |
34 | **Note: this is a one-way operation. Once you `eject`, you can't go back!**
35 |
36 | If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37 |
38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
39 |
40 | You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
41 |
42 | ## Learn More
43 |
44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45 |
46 | To learn React, check out the [React documentation](https://reactjs.org/).
47 |
48 | ### Code Splitting
49 |
50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51 |
52 | ### Analyzing the Bundle Size
53 |
54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55 |
56 | ### Making a Progressive Web App
57 |
58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59 |
60 | ### Advanced Configuration
61 |
62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63 |
64 | ### Deployment
65 |
66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67 |
68 | ### `npm run build` fails to minify
69 |
70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
71 |
--------------------------------------------------------------------------------
/client/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "@testing-library/jest-dom": "^5.17.0",
4 | "@testing-library/react": "^13.4.0",
5 | "@testing-library/user-event": "^13.5.0",
6 | "cosmiconfig": "^9.0.0",
7 | "graphql-hooks": "^6.3.2",
8 | "react": "^18.2.0",
9 | "react-dom": "^18.2.0",
10 | "react-icons": "^4.11.0",
11 | "react-router-dom": "^6.16.0",
12 | "react-scripts": "5.0.1",
13 | "web-vitals": "^2.1.4",
14 | "webpack": "^5.89.0"
15 | },
16 | "devDependencies": {
17 | "graphpack": "^1.0.9",
18 | "tailwindcss": "^3.3.3"
19 | },
20 | "scripts": {
21 | "start": "react-scripts start",
22 | "dev": "graphpack",
23 | "build": "graphpack build"
24 | },
25 | "browserslist": {
26 | "production": [
27 | ">0.2%",
28 | "not dead",
29 | "not op_mini all"
30 | ],
31 | "development": [
32 | "last 1 chrome version",
33 | "last 1 firefox version",
34 | "last 1 safari version"
35 | ]
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/client/public/gdsc-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/public/gdsc-logo.png
--------------------------------------------------------------------------------
/client/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | GDSC UPES
12 |
13 |
14 |
15 |
16 |
17 |
18 | You need to enable JavaScript to run this app.
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/client/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | text-align: center;
3 | }
4 |
5 | .App-logo {
6 | height: 40vmin;
7 | pointer-events: none;
8 | }
9 |
10 | @media (prefers-reduced-motion: no-preference) {
11 | .App-logo {
12 | animation: App-logo-spin infinite 20s linear;
13 | }
14 | }
15 |
16 | .App-header {
17 | background-color: #282c34;
18 | min-height: 100vh;
19 | display: flex;
20 | flex-direction: column;
21 | align-items: center;
22 | justify-content: center;
23 | font-size: calc(10px + 2vmin);
24 | color: white;
25 | }
26 |
27 | .App-link {
28 | color: #61dafb;
29 | }
30 |
31 | @keyframes App-logo-spin {
32 | from {
33 | transform: rotate(0deg);
34 | }
35 | to {
36 | transform: rotate(360deg);
37 | }
38 | }
39 |
40 | .loading {
41 | display: flex;
42 | justify-content: center;
43 | align-items: center;
44 | height: 100vh;
45 | }
46 |
47 | .loading svg {
48 | width: 50px;
49 | height: 50px;
50 | }
51 |
52 | .loading circle {
53 | animation: dash 1s linear infinite;
54 | }
55 |
56 | @keyframes dash {
57 | 0% {
58 | stroke-dashoffset: 150;
59 | }
60 | 50% {
61 | stroke-dashoffset: 0;
62 | }
63 | 100% {
64 | stroke-dashoffset: -150;
65 | }
66 | }
67 |
--------------------------------------------------------------------------------
/client/src/App.jsx:
--------------------------------------------------------------------------------
1 | import React,{useState,useEffect} from "react";
2 | import { BrowserRouter as Router, Route, Routes } from "react-router-dom";
3 | import Navbar from "./components/Navbar/Navbar";
4 | import Footer from "./components/Footer/Footer";
5 |
6 |
7 | // Import your pages or components for each route
8 | import Home from "./pages/Home/Home";
9 | import Events from "./pages/Events/Events";
10 | import Team from "./pages/Team";
11 | import EventsDetails from "./pages/Events-Details/EventsDetails";
12 | import "./App.css";
13 |
14 | function App() {
15 | const[isloading,setIsLoading]=useState(true);
16 | useEffect(()=>{
17 | setTimeout(()=>{
18 | setIsLoading(false);
19 | },1000)
20 | },[]);
21 | return (
22 |
23 |
24 | {isloading ? (
25 |
26 |
27 |
37 |
46 |
47 |
48 |
49 | ) : (
50 |
51 | } />
52 | } />
53 | }/>
54 | }/>
55 |
56 | )}
57 |
58 |
59 | );
60 |
61 | }
62 |
63 | export default App;
64 |
--------------------------------------------------------------------------------
/client/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 |
--------------------------------------------------------------------------------
/client/src/DarkModeContext.js:
--------------------------------------------------------------------------------
1 | import React, { createContext, useContext, useState } from 'react';
2 |
3 | const DarkModeContext = createContext();
4 |
5 | export const DarkModeProvider = ({ children }) => {
6 | const [isDarkMode, setIsDarkMode] = useState(false);
7 |
8 | const toggleDarkMode = () => {
9 | setIsDarkMode((prev) => !prev);
10 | };
11 |
12 |
13 |
14 | return (
15 |
16 | {children}
17 |
18 | );
19 | };
20 |
21 | export const useDarkMode = () => {
22 | const context = useContext(DarkModeContext);
23 | if (!context) {
24 | throw new Error('useDarkMode must be used within a DarkModeProvider');
25 | }
26 | return context;
27 | };
28 |
--------------------------------------------------------------------------------
/client/src/Layout/Layout.jsx:
--------------------------------------------------------------------------------
1 | import Navbar from "../components/Navbar/Navbar";
2 | import Footer from "../components/Footer/Footer";
3 | import {Outlet} from "react-router-dom";
4 |
5 | export default function Layout() {
6 | return
7 |
8 |
9 |
10 |
11 | }
--------------------------------------------------------------------------------
/client/src/assets/illustrations/events-figma.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/events-figma.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/events-hero-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/events-hero-1.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/events-partner-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/events-partner-1.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/events-partner-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/events-partner-2.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/events-partner-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/events-partner-3.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/events-partner-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/events-partner-bg.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/events-partners-bg-main.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/events-partners-bg-main.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/events-past.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/events-past.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/footer-left-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/footer-left-1.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/footer-left-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/footer-left-2.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/footer-right-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/footer-right-1.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/footer-right-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/footer-right-2.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/home-about-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/home-about-dark.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/home-about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/home-about.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/home-blog-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/home-blog-1.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/home-blog-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/home-blog-2.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/home-faq-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/home-faq-1.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/home-faq-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/home-faq-2.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/home-goal-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/home-goal-1.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/home-goal-2-wrong.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/home-goal-2-wrong.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/home-goal-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/home-goal-2.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/home-hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/home-hero.png
--------------------------------------------------------------------------------
/client/src/assets/illustrations/speaker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/illustrations/speaker.png
--------------------------------------------------------------------------------
/client/src/assets/logos/Calendar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/Calendar.png
--------------------------------------------------------------------------------
/client/src/assets/logos/Clock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/Clock.png
--------------------------------------------------------------------------------
/client/src/assets/logos/GitHub.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/GitHub.png
--------------------------------------------------------------------------------
/client/src/assets/logos/Hashnode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/Hashnode.png
--------------------------------------------------------------------------------
/client/src/assets/logos/Instagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/Instagram.png
--------------------------------------------------------------------------------
/client/src/assets/logos/LinkedIn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/LinkedIn.png
--------------------------------------------------------------------------------
/client/src/assets/logos/Map-Marker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/Map-Marker.png
--------------------------------------------------------------------------------
/client/src/assets/logos/TwitterX.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/TwitterX.png
--------------------------------------------------------------------------------
/client/src/assets/logos/Website.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/Website.png
--------------------------------------------------------------------------------
/client/src/assets/logos/gdsc-dark.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/gdsc-dark.webp
--------------------------------------------------------------------------------
/client/src/assets/logos/gdsc-light.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/assets/logos/gdsc-light.webp
--------------------------------------------------------------------------------
/client/src/components/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/components/.gitkeep
--------------------------------------------------------------------------------
/client/src/components/Footer/Footer.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styles from "./Footer.module.css";
3 | import { RiInstagramLine, RiLinkedinBoxLine, RiFacebookBoxLine } from "react-icons/ri";
4 | import { FaSquareXTwitter } from "react-icons/fa6";
5 | import { SiHashnode, SiGithub } from "react-icons/si";
6 | import { Link } from "react-router-dom";
7 | import personLeft from "../../assets/illustrations/footer-left-1.png"
8 | import LogoLeft from "../../assets/illustrations/footer-left-2.png"
9 | import personRight from "../../assets/illustrations/footer-right-1.png"
10 | import LogoRight from "../../assets/illustrations/footer-right-2.png"
11 | import { useDarkMode } from "../../DarkModeContext";
12 |
13 | const Footer = () => {
14 | const { isDarkMode } = useDarkMode();
15 | return (
16 | <>
17 |
18 |
19 |
20 |
21 |
22 |
26 |
27 |
31 |
32 |
33 |
34 |
35 |
36 |
Thank you for your love and support!
37 |
Connect with us at gdscupes@gmail.com
38 |
39 |
43 |
44 |
45 |
49 |
50 |
51 |
55 |
56 |
57 |
61 |
62 |
63 |
67 |
68 |
69 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
82 |
86 |
87 |
88 | >
89 | );
90 | };
91 |
92 | export default Footer;
93 |
94 |
--------------------------------------------------------------------------------
/client/src/components/Footer/Footer.module.css:
--------------------------------------------------------------------------------
1 | .footer{
2 | display: flex;
3 | flex-direction: column;
4 | align-items: center;
5 | justify-content: center;
6 | padding:3rem;
7 | }
8 | .header{
9 | padding: 1rem ;
10 | position: relative;
11 | z-index: 1000;
12 | font-size: 3.2rem;
13 | /* margin-left: 1em; */
14 | }
15 |
16 | .textWhite {
17 | color: white;
18 | }
19 |
20 | .para{
21 | padding:1.2rem;
22 | font-size: 1.5rem;
23 | font-weight: 500;
24 | color: #000;
25 | margin: 0 1rem;
26 | }
27 |
28 | .socialMedia a{
29 | color: #000;
30 | font-size: 3rem;
31 | margin: 0 1rem;
32 | transition: color 0.3s linear;
33 | }
34 |
35 | .socialMediaIcon {
36 | display: inline-block;
37 | margin-right: 10px;
38 | font-size: 24px;
39 | color: #333;
40 | transition: all 0.3s ease;
41 | }
42 |
43 | .socialMediaIcon:hover {
44 | transform: translateY(-3px);
45 | color: #007bff;
46 | }
47 |
48 | .twitter:hover {
49 | color: #1da1f2 ;
50 | }
51 |
52 | .instagram:hover {
53 | color: #e1306c;
54 | }
55 |
56 | .linkedin:hover {
57 | color: #0077b5;
58 | }
59 |
60 | .facebook:hover {
61 | color: #1877f2;
62 | }
63 |
64 | .hashnode:hover {
65 | color: #2962ff;
66 | }
67 |
68 | .github:hover {
69 | color: #101010;
70 | }
71 |
72 | .logo {
73 | width: 100%;
74 | height: auto;
75 | }
76 |
77 | .person {
78 | width: 80%;
79 | height: auto;
80 | }
81 |
82 | @media only screen and (max-width: 576px) {
83 | .footer{
84 | margin-left: 9rem;
85 | padding-top: 0%;
86 | margin-bottom: 0%;
87 | display:flex;
88 | flex-direction: column;
89 | }
90 | .header{
91 | font-size: 1.8rem;
92 | text-align: center;
93 | padding: 1rem ;
94 |
95 | }
96 |
97 | .para{
98 | text-align: center;
99 | padding:0.2rem;
100 | margin: 0 5rem;
101 |
102 | }
103 | .socialMedia {
104 | text-align: center;
105 | margin-bottom: 0%;
106 |
107 | }
108 | .socialMedia a{
109 | font-size: 2rem;
110 | }
111 | }
112 |
--------------------------------------------------------------------------------
/client/src/components/Navbar/Navbar.jsx:
--------------------------------------------------------------------------------
1 | import React, { useState } from "react";
2 | import { Link } from "react-router-dom";
3 | import { FaBars, FaTimes } from "react-icons/fa";
4 | import styles from "./Navbar.module.css";
5 | import { HiMiniMoon, HiMiniSun } from "react-icons/hi2";
6 | import Logo from "../../assets/logos/gdsc-light.webp";
7 | import { useDarkMode } from '../../DarkModeContext';
8 | import gdscDark from "../../assets/logos/gdsc-dark.webp";
9 | import gdscLight from '../../static/gdscLight.webp';
10 |
11 | const Navbar = () => {
12 | const { isDarkMode, toggleDarkMode } = useDarkMode();
13 | const gdscLogo = isDarkMode ? gdscDark : gdscLight;
14 |
15 | const [isNavVisible, setNavVisibility] = useState(false);
16 |
17 |
18 | return (
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Home
28 |
29 |
30 | Events
31 |
32 |
33 | Team
34 |
35 |
36 |
37 | {isDarkMode ? (
38 |
39 | ) : (
40 |
41 | )}
42 |
43 |
44 |
45 | );
46 | };
47 |
48 | export default Navbar;
49 |
--------------------------------------------------------------------------------
/client/src/components/Navbar/Navbar.module.css:
--------------------------------------------------------------------------------
1 | .navbar {
2 | color: #000;
3 | display: flex;
4 | justify-content: space-between;
5 | align-items: center;
6 | padding: 10px 20px;
7 | }
8 |
9 | .logo {
10 | font-size: 20px;
11 | }
12 |
13 | .navLinks {
14 | list-style: none;
15 | display: flex;
16 | padding: 0 0 0 75rem;
17 | }
18 |
19 | .navLink {
20 | margin: 0 20px;
21 | text-decoration: none;
22 | list-style: none;
23 | padding: 0.5rem 1.5rem;
24 | border: 2px solid #000;
25 | border-radius: 20px;
26 | transition: all 0.3s ease 0s;
27 | cursor: pointer;
28 | position: relative;
29 | }
30 | .navLink a {
31 | text-decoration: none;
32 | color: #000;
33 | }
34 |
35 | .navLink::before {
36 | content: "";
37 | position: absolute;
38 | bottom: -2px;
39 | left: 0;
40 | width: 100%;
41 | height: 2px;
42 | transform: scaleX(0);
43 | transition: transform 0.3s ease-in-out;
44 | }
45 |
46 | .navLink:hover::before {
47 | transform: scaleX(1);
48 |
49 | }
50 |
51 | .navLink:hover {
52 | transform: translateY(-2px);
53 | }
54 |
55 |
56 | .navLink:nth-child(1) {
57 | border-color: var(--red-color);
58 | }
59 | .navLink:nth-child(1):hover {
60 | background-color: var(--red-color-light);
61 | }
62 |
63 | .navLink:nth-child(2) {
64 | border-color: var(--blue-color);
65 | }
66 | .navLink:nth-child(2):hover {
67 | background-color: var(--blue-color-light);
68 | }
69 |
70 | .navLink:nth-child(3) {
71 | border-color: var(--green-color);
72 | }
73 | .navLink:nth-child(3):hover {
74 | background-color: var(--green-color-light);
75 | }
76 |
77 | .navLink:nth-child(4) {
78 | border-color: var(--yellow-color);
79 | }
80 | .navLink:nth-child(4):hover {
81 | background-color: var(--yellow-color-light);
82 | }
83 |
84 | .button {
85 | background-color: #000;
86 | width: 2rem;
87 | height: 2rem;
88 | border-radius: 50%;
89 | border: none;
90 | color: white;
91 | font-size: 1.5rem;
92 | cursor: pointer;
93 | padding: 0.25rem;
94 | }
95 |
96 | .button:hover {
97 | transform: rotate(360deg);
98 | transition: transform 0.5s ease-in-out;
99 | }
100 |
101 |
102 | @media only screen and (max-width: 1200px) {
103 |
104 | .navLinks {
105 | padding: 0;
106 | }
107 | }
108 |
109 | @media only screen and (max-width: 768px) {
110 |
111 | .navLinks {
112 | flex-direction: column;
113 | align-items: flex-start;
114 | padding: 0;
115 | }
116 |
117 | .navLink {
118 | margin: 10px 0;
119 | }
120 | }
121 |
122 | @media only screen and (max-width: 576px) {
123 |
124 | .navbar {
125 | flex-direction: column;
126 | align-items: center;
127 | }
128 |
129 | .navLinks {
130 | padding: 10px 0;
131 | }
132 |
133 | .navLink {
134 | margin: 10px 0;
135 | }
136 | }
137 |
138 |
139 |
140 | @media only screen and (max-width: 768px) {
141 |
142 | .navLinks {
143 | display: none;
144 | flex-direction: row;
145 | align-items: flex-start;
146 | padding: 0;
147 | position: absolute;
148 | top: 60px;
149 | left: 0;
150 | width: 100%;
151 | background-color: #fff;
152 | box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
153 | }
154 |
155 | .navLink {
156 | margin: 10px 0;
157 | }
158 |
159 | .navbar.active .navLinks {
160 | display: flex;
161 | }
162 |
163 | }
164 |
--------------------------------------------------------------------------------
/client/src/data/EventDesc.js:
--------------------------------------------------------------------------------
1 | //Details of the current event
2 | import figma from "../assets/illustrations/events-figma.png"
3 |
4 | export const CurrentEventData=[
5 | {
6 | title: "Figma Foombaloomba",
7 | type: "Workshop",
8 | desc:"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
9 | image:figma ,
10 | registerlink: "",
11 | date:"05 - 10",
12 | month:"Oct 2023",
13 | time:"10:00 AM - 01:00 PM",
14 | loc:"11th Block",
15 | aboutpara1:"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. ",
16 | aboutpara2:"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. ",
17 | sponsor1:"",
18 | sponsor2:"",
19 | speakers: [
20 | {
21 | name: "John Doe",
22 | title: "Designer",
23 | image: "/path/to/image.jpg",
24 | description: "John Doe is a designer with 5 years of experience in the field. He has worked on various projects and has a passion for creating beautiful and functional designs.",
25 | },
26 | {
27 | name: "Jane Smith",
28 | title: "Developer",
29 | image: "/path/to/image.jpg",
30 | description: "Jane Smith is a developer with 3 years of experience in the field. She has worked on various projects and has a passion for building scalable and efficient software.",
31 | },
32 | ],
33 | },
34 | ]
--------------------------------------------------------------------------------
/client/src/data/PastEventData.js:
--------------------------------------------------------------------------------
1 | //Details of Past Events
2 | import Past from "../assets/illustrations/events-past.png";
3 |
4 | export const PastEventData=[
5 | {
6 | title: "Recreating Resumes 1",
7 | desc:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod et dolore magna aliqua.",
8 | image:Past ,
9 | date:"28th Sep'23"
10 | },
11 | {
12 | title: "Recreating Resumes 2",
13 | desc:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod et dolore magna aliqua.",
14 | image:Past ,
15 | date:"28th Sep'23"
16 | },
17 | {
18 | title: "Recreating Resumes 3",
19 | desc:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod et dolore magna aliqua.",
20 | image:Past ,
21 | date:"28th Sep'23"
22 | },
23 | {
24 | title: "Recreating Resumes 4",
25 | desc:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod et dolore magna aliqua.",
26 | image:Past ,
27 | date:"28th Sep'23"
28 | },
29 | {
30 | title: "Recreating Resumes 5",
31 | desc:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod et dolore magna aliqua.",
32 | image:Past ,
33 | date:"28th Sep'23"
34 | },
35 | {
36 | title: "Recreating Resumes 6",
37 | desc:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod et dolore magna aliqua.",
38 | image:Past ,
39 | date:"28th Sep'23"
40 | },
41 | {
42 | title: "Recreating Resumes 7",
43 | desc:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod et dolore magna aliqua.",
44 | image:Past ,
45 | date:"28th Sep'23"
46 | },
47 | {
48 | title: "Recreating Resumes 8",
49 | desc:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod et dolore magna aliqua.",
50 | image:Past ,
51 | date:"28th Sep'23"
52 | },
53 | ]
--------------------------------------------------------------------------------
/client/src/db.js:
--------------------------------------------------------------------------------
1 | export let users = [
2 | { id: 1, name: "John Doe", email: "john@gmail.com", age: 22 },
3 | { id: 2, name: "Jane Doe", email: "jane@gmail.com", age: 23 }
4 | ];
--------------------------------------------------------------------------------
/client/src/index.css:
--------------------------------------------------------------------------------
1 | @import 'tailwindcss/base';
2 | @import 'tailwindcss/components';
3 | @import 'tailwindcss/utilities';
4 |
5 |
6 | *{
7 | padding: 0;
8 | margin: 0;
9 | box-sizing: border-box;
10 | font-family: 'Nunito Sans', sans-serif;
11 | }
12 |
13 | :root {
14 | --red-color: hsl(5, 81%, 56%);
15 | --blue-color: hsl(219, 80%, 62%);
16 | --green-color: hsl(151, 85%, 33%);
17 | --yellow-color: hsl(45, 96%, 50%);
18 |
19 | --red-color-light: hsl(4, 82%, 90%);
20 | --blue-color-light: hsl(219, 82%, 90%);
21 | --green-color-light: hsl(151, 87%, 90%);
22 | --yellow-color-light: hsl(45, 97%, 90%);
23 | }
--------------------------------------------------------------------------------
/client/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom/client';
3 | import './index.css';
4 | import App from './App';
5 | import reportWebVitals from './reportWebVitals';
6 | import { DarkModeProvider } from './DarkModeContext';
7 |
8 | const root = ReactDOM.createRoot(document.getElementById('root'));
9 | root.render(
10 |
11 |
12 |
13 |
14 |
15 | );
16 |
17 | // If you want to start measuring performance in your app, pass a function
18 | // to log results (for example: reportWebVitals(console.log))
19 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
20 | reportWebVitals();
21 |
--------------------------------------------------------------------------------
/client/src/logo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/client/src/pages/Events-Details/Desc.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { CurrentEventData } from '../../data/EventDesc'
3 | import { Link } from 'react-router-dom'
4 | import calendar from "../../assets/logos/Calendar.png"
5 | import clock from "../../assets/logos/Clock.png"
6 | import map from "../../assets/logos/Map-Marker.png"
7 | import { useDarkMode } from "../../DarkModeContext";
8 |
9 | const Desc = () => {
10 | const { isDarkMode } = useDarkMode();
11 | return (
12 |
13 |
14 |
15 |
16 |
17 |
22 |
23 |
24 |
{CurrentEventData[0].title}
25 |
{CurrentEventData[0].type}
26 |
{CurrentEventData[0].desc}
27 |
28 |
29 | Register
30 |
31 |
32 |
33 |
34 |
35 |
36 |
41 |
{CurrentEventData[0].date}
42 |
{CurrentEventData[0].month}
43 |
44 |
45 |
50 |
{CurrentEventData[0].time}
51 |
52 |
53 |
58 |
{CurrentEventData[0].loc}
59 |
UPES Bidholi
60 |
61 |
62 |
63 |
64 |
65 | )
66 | }
67 |
68 | export default Desc
69 |
--------------------------------------------------------------------------------
/client/src/pages/Events-Details/Details.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { CurrentEventData } from '../../data/EventDesc'
3 | import speaker from "../../static/speaker.png"
4 | import { useDarkMode } from "../../DarkModeContext";
5 |
6 | const Details = () => {
7 | const { isDarkMode } = useDarkMode();
8 | return (
9 |
10 |
11 |
12 |
13 |
14 |
15 |
About {CurrentEventData[0].title}
16 |
17 |
18 |
About the current event blah blah blah blah
19 |
20 |
21 |
{CurrentEventData[0].aboutpara1}
22 |
23 |
{CurrentEventData[0].aboutpara2}
24 |
25 |
26 |
27 |
28 |
29 |
30 |
33 |
34 |
Speakers of the event
35 |
36 |
37 |
38 |
39 |
Your Name
40 |
41 |
42 |
43 |
Your Name
44 |
45 |
46 |
47 |
48 |
49 |
50 | )
51 | }
52 |
53 | export default Details
54 |
55 |
--------------------------------------------------------------------------------
/client/src/pages/Events-Details/EventsDetails.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import Desc from "../Events-Details/Desc"
3 | import Details from "../Events-Details/Details"
4 | import Sponsors from "../Events-Details/Sponsors"
5 |
6 |
7 | const EventsDetails = () => {
8 | return (
9 |
10 |
11 |
12 |
13 |
14 | )
15 | }
16 |
17 | export default EventsDetails
18 |
--------------------------------------------------------------------------------
/client/src/pages/Events-Details/Sponsors.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import bg from '../../assets/illustrations/events-partner-bg.png'
3 | import partner1 from '../../assets/illustrations/events-partner-1.png'
4 | import partner2 from '../../assets/illustrations/events-partner-2.png'
5 | import partner3 from '../../assets/illustrations/events-partner-3.png'
6 | import { useDarkMode } from "../../DarkModeContext";
7 |
8 | const Sponsors = () => {
9 | const { isDarkMode } = useDarkMode();
10 |
11 | return (
12 |
13 |
14 |
15 |
16 |
21 |
Our Sponsors
22 |
23 |
Archive extrodinare of our sponsors
24 |
25 |
26 |
27 |
28 |
39 |
40 |
41 |
42 | )
43 | }
44 |
45 | export default Sponsors
46 |
--------------------------------------------------------------------------------
/client/src/pages/Events/CurrentEvent.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import hero from "../../assets/illustrations/events-hero-1.png";
3 | import { Link } from "react-router-dom";
4 | import { CurrentEventData } from "../../data/EventDesc";
5 | import { useDarkMode } from "../../DarkModeContext";
6 |
7 | const CurrentEvent = () => {
8 | const { isDarkMode } = useDarkMode();
9 | return (
10 | <>
11 |
12 |
13 |
14 |
19 | {/* Triangular cut element */}
20 |
28 |
29 |
30 |
35 |
40 |
45 |
46 | {CurrentEventData[0].date}
47 |
48 |
49 | {CurrentEventData[0].month}
50 |
51 |
52 |
57 |
58 |
63 |
64 |
65 |
66 | {CurrentEventData[0].title}
67 |
68 |
69 | {CurrentEventData[0].type}
70 |
71 |
72 | {CurrentEventData[0].desc}
73 |
74 |
75 |
76 |
77 | More Details
78 |
79 |
80 |
81 | Register
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 | >
90 | );
91 | };
92 |
93 | export default CurrentEvent;
94 |
--------------------------------------------------------------------------------
/client/src/pages/Events/Events.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import CurrentEvent from './CurrentEvent'
3 | import PastEvent from './PastEvent'
4 | import Partners from './Partners'
5 |
6 | function Events(){
7 | return (
8 |
13 | )
14 | }
15 |
16 | export default Events
17 |
--------------------------------------------------------------------------------
/client/src/pages/Events/Partners.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import bg from '../../assets/illustrations/events-partner-bg.png'
3 | import partner1 from '../../assets/illustrations/events-partner-1.png'
4 | import partner2 from '../../assets/illustrations/events-partner-2.png'
5 | import partner3 from '../../assets/illustrations/events-partner-3.png'
6 | import { useDarkMode } from "../../DarkModeContext";
7 |
8 | const Partners = () => {
9 | const { isDarkMode } = useDarkMode();
10 |
11 | return (
12 |
13 |
14 |
15 | {/*
16 |
17 |
Our Partners
18 |
19 |
Archive extrodinare of our Partners
20 |
21 |
22 |
*/}
23 |
24 |
29 |
Past Events
30 |
31 |
Archive extrodinare of our sponsors
32 |
33 |
34 |
35 |
36 |
47 |
48 |
49 |
50 | )
51 | }
52 |
53 | export default Partners
54 |
--------------------------------------------------------------------------------
/client/src/pages/Events/PastEvent.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { PastEventData } from "../../data/PastEventData";
3 | import { useState } from "react";
4 | import { useDarkMode } from "../../DarkModeContext";
5 |
6 | const PastEvent = () => {
7 | const [expanded, setExpanded] = useState(false);
8 | const handleToggle = () => {
9 | setExpanded(!expanded);
10 | };
11 | const { isDarkMode } = useDarkMode();
12 |
13 | return (
14 | <>
15 | {/* line */}
16 |
17 |
18 |
19 |
20 | {/* Title */}
21 |
22 |
27 |
Past Events
28 |
29 |
Archive extrodinare of our sponsors
30 |
31 |
32 |
33 |
34 | {/* Event Boxes */}
35 |
36 | {PastEventData.slice(0, window.innerWidth >= 768 ? 4 : 2).map(
37 | (event, index) => (
38 |
41 |
42 | {event.date}
43 |
44 |
48 |
51 |
54 |
55 | )
56 | )}
57 |
58 | {expanded && (
59 |
64 | {Array.from({ length: window.innerWidth >= 768 ? 4 : 2 }).map(
65 | (_, index) => {
66 | const event =
67 | PastEventData[index + (window.innerWidth >= 768 ? 4 : 2)]; // Adjust the starting index accordingly
68 | return (
69 | event && (
70 |
74 |
75 | {event.date}
76 |
77 |
81 |
84 |
87 |
88 | )
89 | );
90 | }
91 | )}
92 |
93 | )}
94 |
95 |
96 |
100 | {expanded ? "Close All" : "View All"}
101 |
102 |
103 |
104 | >
105 | );
106 | };
107 |
108 | export default PastEvent;
109 |
--------------------------------------------------------------------------------
/client/src/pages/Home/About.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import AboutUsLight from "../../assets/illustrations/home-about.png"
3 | import { useDarkMode } from '../../DarkModeContext';
4 |
5 | const About = () => {
6 | const { isDarkMode } = useDarkMode();
7 |
8 | return (
9 | <>
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
22 |
23 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
24 |
25 |
26 |
27 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
28 |
29 |
30 |
31 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
32 |
33 |
34 |
35 |
36 |
37 |
38 |
43 |
44 |
45 |
46 | >
47 |
48 | );
49 | }
50 |
51 | export default About;
52 |
--------------------------------------------------------------------------------
/client/src/pages/Home/Blogs.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import Blog from "../../assets/illustrations/home-blog-1.png"
3 | import {Link} from 'react-router-dom';
4 |
5 | // import { useQuery } from 'graphql-hooks';
6 |
7 | // const PublicationQuery = `
8 | // query Publication {
9 | // publication(host: "https://gdscupes.hashnode.dev/") {
10 | // isTeam
11 | // title
12 | // posts(first: 3) {
13 | // edges {
14 | // node {
15 | // title
16 | // brief
17 | // url
18 | // }
19 | // }
20 | // }
21 | // }
22 | // }
23 | // `;
24 |
25 | const Blogs = () => {
26 | // const { loading, error, data } = useQuery(PublicationQuery);
27 |
28 | // if (loading) return Loading...
;
29 | // if (error) return Error: {error.message}
;
30 |
31 | // const posts = data?.publication?.posts?.edges || [];
32 |
33 | return (
34 | <>
35 |
36 |
37 | {/* First Row */}
38 |
39 |
40 |
41 |
42 |
Blogs from our Community
43 |
44 |
45 |
46 |
47 |
48 |
49 | {/* Blog Cards */}
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 | View All
100 |
101 |
102 |
103 |
104 | {/*
105 |
{data?.publication?.title}
106 | {posts.map((post, index) => (
107 |
114 | ))}
115 |
*/}
116 | >
117 | );
118 | }
119 |
120 | export default Blogs;
121 |
122 |
--------------------------------------------------------------------------------
/client/src/pages/Home/Goals.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import Goal1 from "../../assets/illustrations/home-goal-1.png"
3 | import Goal2 from "../../assets/illustrations/home-goal-2.png"
4 | import { useDarkMode } from '../../DarkModeContext';
5 |
6 | const Goals = () => {
7 | const { isDarkMode } = useDarkMode();
8 | return (
9 |
10 |
11 |
12 | {/* First Row */}
13 |
14 |
15 |
20 |
21 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
22 |
23 |
24 |
25 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
26 |
27 |
28 |
29 |
30 |
31 | {/* Image in the First Row */}
32 |
33 |
38 |
39 |
40 |
41 |
42 | {/* Image in the Second Row */}
43 |
44 |
49 |
50 |
51 |
52 | {/* Second Row */}
53 |
54 |
55 |
56 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
57 |
58 |
59 |
60 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 | );
69 | }
70 |
71 | export default Goals;
72 |
--------------------------------------------------------------------------------
/client/src/pages/Home/Home.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import Intro from "./Intro";
3 | import About from "./About";
4 | import Goals from "./Goals";
5 | import Blogs from "./Blogs"
6 | import QnA from "./Qna"
7 |
8 | function Home() {
9 | return (
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 | )
18 | }
19 |
20 | export default Home
--------------------------------------------------------------------------------
/client/src/pages/Home/Intro.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import gdscLight from '../../static/gdscLight.webp'
3 | import Website from '../../static/Website.png';
4 | import InstagramLight from '../../static/Instagram.png';
5 | import InstagramDark from '../../static/Instagram-Dark.png';
6 | import GitHubLight from '../../static/GitHub.png';
7 | import GitHubDark from '../../static/GitHub-Dark.png';
8 | import LinkedInLight from '../../static/LinkedIn.png';
9 | import LinkedInDark from '../../static/LinkedIn-Dark.png';
10 | import TwitterXLight from '../../static/TwitterX.png';
11 | import TwitterXDark from '../../static/TwitterX-Dark.png';
12 | import WebsiteLight from '../../static/Website.png';
13 | import WebsiteDark from '../../static/Website-Dark.png';
14 | import Hashnode from '../../static/Hashnode.png';
15 |
16 | import { Link } from "react-router-dom";
17 | import { useDarkMode } from '../../DarkModeContext';
18 | import gdscDark from "../../assets/logos/gdsc-dark.webp"
19 | import homeHero from "../../static/homeHero-transp.png"
20 |
21 | const Home = () => {
22 | const { isDarkMode } = useDarkMode();
23 | const gdscLogo = isDarkMode ? gdscDark : gdscLight;
24 | const Instagram = isDarkMode ? InstagramDark : InstagramLight;
25 | const GitHub = isDarkMode ? GitHubDark : GitHubLight;
26 | const LinkedIn = isDarkMode ? LinkedInDark : LinkedInLight;
27 | const TwitterX = isDarkMode ? TwitterXDark : TwitterXLight;
28 | const Website = isDarkMode ? WebsiteDark : WebsiteLight;
29 |
30 |
31 |
32 | return (
33 |
34 |
35 |
36 |
37 |
38 |
43 |
44 |
45 |
46 |
47 |
48 |
Google Developer
49 |
50 |
53 |
54 |
UPES Dehradun
55 |
56 |
57 |
58 |
59 | Code.
60 | Create.
61 | Collaborate.
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
93 |
94 |
95 |
96 | );
97 | }
98 |
99 | export default Home;
--------------------------------------------------------------------------------
/client/src/pages/Home/Qna.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import QnA1 from "../../assets/illustrations/home-faq-1.png"
3 | import { useState } from 'react';
4 | import { FiPlus, FiMinus } from 'react-icons/fi';
5 |
6 | const Qna = () => {
7 | const [activeIndex,setActiveIndex]=useState(null);
8 | const faqData=[
9 | {
10 | question:'This is a question 1?',
11 | answer:'This is the answer 1',
12 | },
13 | {
14 | question:'This is a question 2?',
15 | answer:'This is the answer 2',
16 | },
17 | {
18 | question:'This is a question 3?',
19 | answer:'This is the answer 3',
20 | },
21 | {
22 | question:'This is a question 4?',
23 | answer:'This is the answer 4',
24 | },
25 | {
26 | question:'This is a question 5?',
27 | answer:'This is the answer 5',
28 | },
29 | ];
30 |
31 | const faqOpen=(index)=>{
32 | setActiveIndex((currentval)=>(currentval==index?null:index));
33 | };
34 |
35 | return (
36 |
37 |
38 |
39 |
40 |
You Ask, We Answer!
41 |
42 |
43 |
44 |
45 | {/*
46 |
49 |
50 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
51 |
52 |
53 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
54 |
55 |
*/}
56 |
57 |
58 |
63 |
64 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 | {faqData.map((item,index)=>(
75 |
76 |
faqOpen(index)}
78 | >
79 |
80 |
{item.question}
81 | {activeIndex==index? : }
82 |
83 |
84 | {activeIndex==index &&
85 | (
88 | )}
89 |
90 | ))}
91 |
92 |
93 |
94 |
95 | )
96 | }
97 |
98 | export default Qna
99 |
100 |
101 |
--------------------------------------------------------------------------------
/client/src/pages/Team.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import speaker from "../static/speaker.png"
3 | import { Link } from "react-router-dom";
4 | import LinkedIn from "../static/LinkedIn.png"
5 | import GitHub from "../static/GitHub.png"
6 |
7 | function Team() {
8 | return
9 |
10 |
11 | Meet
12 | Our Team
13 |
14 |
15 |
16 |
19 |
20 |
21 |
22 |
23 |
24 |
Your Name
{/*name of team member*/}
25 |
26 |
27 |
{/*put your linkedin url here*/}
28 |
29 |
30 |
{/*put your github url here*/}
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
Your Name
{/*name of team member*/}
48 |
49 |
50 |
{/*put your linkedin url here*/}
51 |
52 |
53 |
{/*put your github url here*/}
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
Your Name
{/*name of team member*/}
64 |
65 |
66 |
{/*put your linkedin url here*/}
67 |
68 |
69 |
{/*put your github url here*/}
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
Your Name
{/*name of team member*/}
80 |
81 |
82 |
{/*put your linkedin url here*/}
83 |
84 |
85 |
{/*put your github url here*/}
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
Your Name
{/*name of team member*/}
96 |
97 |
98 |
{/*put your linkedin url here*/}
99 |
100 |
101 |
{/*put your github url here*/}
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
Your Name
{/*name of team member*/}
112 |
113 |
114 |
{/*put your linkedin url here*/}
115 |
116 |
117 |
{/*put your github url here*/}
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
Your Name
{/*name of team member*/}
128 |
129 |
130 |
{/*put your linkedin url here*/}
131 |
132 |
133 |
{/*put your github url here*/}
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
Your Name
{/*name of team member*/}
144 |
145 |
146 |
{/*put your linkedin url here*/}
147 |
148 |
149 |
{/*put your github url here*/}
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
Your Name
{/*name of team member*/}
160 |
161 |
162 |
{/*put your linkedin url here*/}
163 |
164 |
165 |
{/*put your github url here*/}
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
Your Name
{/*name of team member*/}
176 |
177 |
178 |
{/*put your linkedin url here*/}
179 |
180 |
181 |
{/*put your github url here*/}
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
Your Name
{/*name of team member*/}
192 |
193 |
194 |
{/*put your linkedin url here*/}
195 |
196 |
197 |
{/*put your github url here*/}
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
Your Name
{/*name of team member*/}
208 |
209 |
210 |
{/*put your linkedin url here*/}
211 |
212 |
213 |
{/*put your github url here*/}
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
Your Name
{/*name of team member*/}
224 |
225 |
226 |
{/*put your linkedin url here*/}
227 |
228 |
229 |
{/*put your github url here*/}
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
Your Name
{/*name of team member*/}
240 |
241 |
242 |
{/*put your linkedin url here*/}
243 |
244 |
245 |
{/*put your github url here*/}
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
Your Name
{/*name of team member*/}
256 |
257 |
258 |
{/*put your linkedin url here*/}
259 |
260 |
261 |
{/*put your github url here*/}
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 | }
275 |
276 | export default Team;
--------------------------------------------------------------------------------
/client/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 |
--------------------------------------------------------------------------------
/client/src/resolvers.js:
--------------------------------------------------------------------------------
1 | import { users } from "./db";
2 |
3 | const resolvers = {
4 | Query: {
5 | user: (parent, { id }, context, info) => {
6 | return users.find(user => user.id == id);
7 | },
8 | users: (parent, args, context, info) => {
9 | return users;
10 | }
11 | }
12 | };
13 |
14 | export default resolvers;
--------------------------------------------------------------------------------
/client/src/schema.graphql:
--------------------------------------------------------------------------------
1 | type User {
2 | id: ID!
3 | name: String!
4 | email: String!
5 | age: Int
6 | }
7 |
8 | type Query {
9 | users: [User!]!
10 | user(id: ID!): User!
11 | }
12 |
--------------------------------------------------------------------------------
/client/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 |
--------------------------------------------------------------------------------
/client/src/static/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/.gitkeep
--------------------------------------------------------------------------------
/client/src/static/GitHub-Dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/GitHub-Dark.png
--------------------------------------------------------------------------------
/client/src/static/GitHub.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/GitHub.png
--------------------------------------------------------------------------------
/client/src/static/Hashnode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/Hashnode.png
--------------------------------------------------------------------------------
/client/src/static/Instagram-Dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/Instagram-Dark.png
--------------------------------------------------------------------------------
/client/src/static/Instagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/Instagram.png
--------------------------------------------------------------------------------
/client/src/static/LinkedIn-Dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/LinkedIn-Dark.png
--------------------------------------------------------------------------------
/client/src/static/LinkedIn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/LinkedIn.png
--------------------------------------------------------------------------------
/client/src/static/TwitterX-Dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/TwitterX-Dark.png
--------------------------------------------------------------------------------
/client/src/static/TwitterX.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/TwitterX.png
--------------------------------------------------------------------------------
/client/src/static/Website-Dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/Website-Dark.png
--------------------------------------------------------------------------------
/client/src/static/Website.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/Website.png
--------------------------------------------------------------------------------
/client/src/static/gdscLight.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/gdscLight.webp
--------------------------------------------------------------------------------
/client/src/static/homeHero-transp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/homeHero-transp.png
--------------------------------------------------------------------------------
/client/src/static/homeHero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/homeHero.png
--------------------------------------------------------------------------------
/client/src/static/speaker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/client/src/static/speaker.png
--------------------------------------------------------------------------------
/client/tailwind.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('tailwindcss').Config} */
2 | module.exports = {
3 | darkMode: 'media',
4 | content: [
5 | "./src/**/*.{js,jsx,ts,tsx}",
6 | ],
7 | theme: {
8 | extend: {
9 | colors:{
10 | 'greyText': '#626262',
11 | 'redText':'#EA4335',
12 | 'blueText': '#0060FF',
13 | 'greenText': '#0D9C58',
14 | 'lineColor':'#C5C5C5',
15 | 'lineColorDark':'#020617',
16 |
17 | },
18 | dropShadow:{
19 | 'custom': '0px 4px 4px rgba(0, 0, 0, 0.25)',
20 | 'custom1': '0px 4px 4px rgba(255, 255, 255, 0.20)',
21 | },
22 | screens:{
23 | 'xxs': '380px',
24 | 'xs': '475px',
25 | 'sm': '640px',
26 | 'md': '768px',
27 | 'lg': '1024px',
28 | 'xl': '1280px'
29 | },
30 | },
31 | },
32 | plugins: [],
33 | }
34 |
35 |
--------------------------------------------------------------------------------
/ui-ux-design/Event Details.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/ui-ux-design/Event Details.png
--------------------------------------------------------------------------------
/ui-ux-design/Events.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/ui-ux-design/Events.png
--------------------------------------------------------------------------------
/ui-ux-design/Home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/ui-ux-design/Home.png
--------------------------------------------------------------------------------
/ui-ux-design/Team.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GDSC-UPES/GDSC-UPES-Website/209daace27b4dc2f73601181e8eacbec9490434b/ui-ux-design/Team.png
--------------------------------------------------------------------------------