From 642021fde47c39317b3c90c54bf7550031e44a35 Mon Sep 17 00:00:00 2001 From: Aswin Asok Date: Thu, 14 Sep 2023 14:15:03 +0530 Subject: [PATCH] remove-files --- src/App.js | 3 +- .../KKEMEventTemplate/Components/Card.jsx | 42 --- .../Components/Card.module.css | 90 ----- .../KKEMEventTemplate/KKEMEventTemplate.jsx | 121 ------ .../KKEMEventTemplate.module.css | 346 ------------------ 5 files changed, 1 insertion(+), 601 deletions(-) delete mode 100644 src/Pages/Events/KKEMEventTemplate/Components/Card.jsx delete mode 100644 src/Pages/Events/KKEMEventTemplate/Components/Card.module.css delete mode 100644 src/Pages/Events/KKEMEventTemplate/KKEMEventTemplate.jsx delete mode 100644 src/Pages/Events/KKEMEventTemplate/KKEMEventTemplate.module.css diff --git a/src/App.js b/src/App.js index b2952ba22..4cb0df699 100644 --- a/src/App.js +++ b/src/App.js @@ -46,7 +46,6 @@ import CodeStorm from "./Pages/Events/GTA/CodeStorm/CodeStorm"; import KKEMLearningFest from "./Pages/KKEMLearningFest/KKEMLearningFest"; import MaveliPortfolio from "./Pages/Events/MaveliPortfolio/MaveliPortfolio"; -import KKEMEventTemplate from "./Pages/Events/KKEMEventTemplate/KKEMEventTemplate"; function App() { const [redirects, setRedirects] = useState([]); const [isLoaded, setIsLoaded] = useState(false); @@ -116,7 +115,7 @@ function App() { } /> } /> } /> - } /> + } /> diff --git a/src/Pages/Events/KKEMEventTemplate/Components/Card.jsx b/src/Pages/Events/KKEMEventTemplate/Components/Card.jsx deleted file mode 100644 index a530f78fa..000000000 --- a/src/Pages/Events/KKEMEventTemplate/Components/Card.jsx +++ /dev/null @@ -1,42 +0,0 @@ -import React from "react"; -import styles from "./Card.module.css"; - -import { Link } from "react-router-dom"; - -const Card = ({ name, image, link, description }) => { - return ( - <> - -
-
- domain images -
-

{name}

-

{description}

- {link !== "#" && ( - - Explore More - - - - - )} - {link === "#" && ( - Coming Soon! - )} -
- - - ); -}; - -export default Card; diff --git a/src/Pages/Events/KKEMEventTemplate/Components/Card.module.css b/src/Pages/Events/KKEMEventTemplate/Components/Card.module.css deleted file mode 100644 index 8eed98eaa..000000000 --- a/src/Pages/Events/KKEMEventTemplate/Components/Card.module.css +++ /dev/null @@ -1,90 +0,0 @@ -.card { - display: flex; - flex-direction: column; - align-items: flex-start; - padding: 16px; - gap: 16px; - - width: 310px; - height: 475px; - - background: #ffffff; - box-shadow: 8px 8px 28px rgba(0, 0, 0, 0.12); - border-radius: 17px; - margin: 1rem 0; - transition: 0.3s ease-in-out; -} - -.card span { - text-transform: uppercase; -} -.card:hover { - transform: translateY(-7px); - - box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15); -} - -/* .card:hover::after { - transform: translateY(0px); - transform: translateX(30px); - } */ - -.card:hover span, -.card:hover svg path { - color: royalblue; - fill: royalblue; -} - -.card_image { - display: flex; - flex-direction: row; - justify-content: center; - align-items: center; - - width: 278px; - height: 214px; - - background: #f3f3f3; - border-radius: 17px; -} - -.card_img { - width: 100%; - height: 100%; - object-fit: cover; - border-radius: 17px; -} - -.card_heading { - font-family: "Poppins"; - font-style: normal; - font-weight: 500; - font-size: 28px; - line-height: 40px; -} - -.card_description { - font-family: "Poppins"; - font-style: normal; - font-weight: 300; - font-size: 16px; - line-height: 22px; -} - -.explore_more { - font-family: "Poppins"; - font-style: normal; - font-weight: 500; - font-size: 16px; - line-height: 22px; -} - -.readmore { - display: flex; -} - -@media only screen and (min-width: 1000px) { - .card { - margin: 1rem; - } -} diff --git a/src/Pages/Events/KKEMEventTemplate/KKEMEventTemplate.jsx b/src/Pages/Events/KKEMEventTemplate/KKEMEventTemplate.jsx deleted file mode 100644 index d8f191a75..000000000 --- a/src/Pages/Events/KKEMEventTemplate/KKEMEventTemplate.jsx +++ /dev/null @@ -1,121 +0,0 @@ -import React from "react"; -import styles from "./KKEMEventTemplate.module.css"; -import Card from "./Components/Card"; - -const KKEMEventTemplate = () => { - return ( - <> - -
- title frame - mU -
- -
-
-

Learning Fest

-

- µLearn in association with KKEM brings you Learning Fest a series of - bootcamps to improve your skills in various domains and the chance - to earn Karma points and various other opportunities. -

-

- 01 October 2023 - 01 November 2023 -

- -
- about section -
- -
-
-

1000+

-

Participants

-
-
-

1000+

-

Participants

-
-
-

1000+

-

Participants

-
-
- -
-

Winners Leaderboard

- -
-
- - - - - - - -
-
-
- - ); -}; - -export default KKEMEventTemplate; diff --git a/src/Pages/Events/KKEMEventTemplate/KKEMEventTemplate.module.css b/src/Pages/Events/KKEMEventTemplate/KKEMEventTemplate.module.css deleted file mode 100644 index 5bf106b18..000000000 --- a/src/Pages/Events/KKEMEventTemplate/KKEMEventTemplate.module.css +++ /dev/null @@ -1,346 +0,0 @@ -@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"); - -.navbar { - background-color: #ffffff; - padding: 2rem 0; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; -} -.container { - display: flex; - justify-content: space-between; - background-color: #fff; - padding: 1rem 2rem; - border-radius: 1.2rem; - width: 100%; - max-width: 800px; - perspective: 1000px; -} - -.container > a { - color: #000; - text-decoration: none; - font-weight: 600; - line-height: 1rem; -} -.container > a:hover { - color: #2e85fe; -} - -/* Banner */ -html { - scroll-behavior: smooth; -} - -.main { - max-width: 200rem; - margin: 0 auto; -} -.title { - width: 100%; - height: auto; - overflow: hidden; - object-fit: cover; - display: block; -} -.mU { - position: absolute; - top: -30%; - left: 20px; - height: 150%; - opacity: 0.5; -} - -.aboutSection { - max-width: 1300px; - padding: 2rem; - margin: auto; - display: flex; - flex-direction: row; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; -} - -.aboutTextsHeading { - color: #24292d; - font-family: Plus Jakarta Sans; - font-size: 4rem; - font-weight: 600; - line-height: 111.5%; /* 90.499px */ -} - -.aboutTextstDescription { - color: #24292d; - font-family: Plus Jakarta Sans; - font-size: 1.35rem; - font-style: normal; - margin-top: 1rem; - font-weight: 500; - max-width: 40rem; - line-height: 127.5%; /* 38.25px */ -} - -.aboutTextDate { - color: #656565; - font-family: Plus Jakarta Sans; - font-size: 1.75rem; - font-style: normal; - color: #24292d; - font-weight: 300; - margin-top: 1rem; - line-height: 127.5%; /* 38.25px */ -} - -.aboutTextButton { - margin-bottom: 1rem; - color: #ffffff; - padding: 1rem 3.5rem; - flex-shrink: 0; - border-radius: 15.62px; - background: #52b565; - margin-top: 1.5rem; - box-shadow: 0px 0px 41.21519px 0px rgba(0, 0, 0, 0.1); -} - -.aboutSectionImage { - width: 400px; - height: 400px; -} - -@media screen and (max-width: 1224px) { - .aboutTextsHeading { - font-size: 3.5rem; - } - - .aboutSectionImage { - width: 300px; - height: 300px; - } - - .aboutTextstDescription { - font-size: 1.25rem; - } - - .aboutTextDate { - font-size: 1.5rem; - } -} - -@media screen and (max-width: 1004px) { - .aboutSection { - justify-content: flex-start; - } -} - -@media screen and (max-width: 768px) { - .aboutTextsHeading { - font-size: 3rem; - } - - .aboutTextstDescription { - font-size: 1.25rem; - } - - .aboutTextDate { - font-size: 1.25rem; - } -} - -@media screen and (max-width: 480px) { - .aboutTextsHeading { - font-size: 2.5rem; - } - - .aboutTextstDescription { - font-size: 1.1rem; - } - - .aboutTextDate { - font-size: 1.1rem; - } - - .aboutTextButton { - padding: 0.75rem 3rem; - } -} - -.countsSectionContainer { - background-color: #dae9ff; - display: flex; - flex-direction: row; - flex-wrap: wrap; - justify-content: space-evenly; - align-items: center; - padding: 1rem; -} - -.countSectionCount { - color: #24292d; - font-family: Plus Jakarta Sans; - font-size: 3.5rem; - font-style: normal; - font-weight: 600; - line-height: 127.5%; /* 91.649px */ - animation: count-section-count 1s ease-in-out; -} - -.countSectionDescription { - color: #4b94ff; - font-family: Plus Jakarta Sans; - font-size: 1.25rem; - font-style: normal; - font-weight: 400; - line-height: 127.5%; /* 38.25px */ - animation: count-section-description 1s ease-in-out; -} - -@media screen and (max-width: 1224px) { - .countSectionCount { - font-size: 3rem; - } - - .countSectionDescription { - font-size: 1.1rem; - } -} - -@keyframes count-section-count { - 0% { - transform: scale(0.5); - opacity: 0; - } - 100% { - transform: scale(1); - opacity: 1; - } -} - -@keyframes count-section-description { - 0% { - transform: translateY(50px); - opacity: 0; - } - 100% { - transform: translateY(0); - opacity: 1; - } -} - -.aboutTextsHeading, -.winnerDetailsHeading { - color: #24292d; - font-family: Plus Jakarta Sans; - font-size: 3.5rem; - font-style: normal; - font-weight: 600; - line-height: 111.5%; /* 90.499px */ -} - -.aboutTextstDescription { - font-size: 1.25rem; -} - -.aboutTextDate { - font-size: 1.25rem; -} - -@media screen and (max-width: 480px) { - .aboutTextsHeading, - .winnerDetailsHeading { - font-size: 2.5rem; - } - - .aboutTextstDescription { - font-size: 1.1rem; - } - - .aboutTextDate { - font-size: 1.1rem; - } - - .aboutTextButton { - padding: 0.75rem 3rem; - } -} - -.countsSectionContainer { - background-color: #dae9ff; - display: flex; - flex-direction: row; - flex-wrap: wrap; - justify-content: space-evenly; - align-items: center; - padding: 1rem; -} - -.countSectionCount { - color: #24292d; - font-family: Plus Jakarta Sans; - font-size: 3.5rem; - font-style: normal; - font-weight: 600; - line-height: 127.5%; /* 91.649px */ - animation: count-section-count 1s ease-in-out; -} - -.countSectionDescription { - color: #4b94ff; - font-family: Plus Jakarta Sans; - font-size: 1.25rem; - font-style: normal; - font-weight: 400; - line-height: 127.5%; /* 38.25px */ - animation: count-section-description 1s ease-in-out; -} - -@media screen and (max-width: 1224px) { - .countSectionCount { - font-size: 3rem; - } - - .countSectionDescription { - font-size: 1.1rem; - } -} - -@keyframes count-section-count { - 0% { - transform: scale(0.5); - opacity: 0; - } - 100% { - transform: scale(1); - opacity: 1; - } -} - -@keyframes count-section-description { - 0% { - transform: translateY(50px); - opacity: 0; - } - 100% { - transform: translateY(0); - opacity: 1; - } -} - -.winnerDetailsHeading { - padding: 2rem; - max-width: 1300px; - margin: auto; -} - -.winnerDetailsListing { - max-width: 1300px; - margin: auto; -} - -.winnerCards { - display: flex; - flex-direction: row; - flex-wrap: wrap; -}