diff --git a/next.config.mjs b/next.config.mjs index c0e7a87b..83330d7e 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -6,6 +6,6 @@ import withTwin from './withTwin.mjs'; export default withTwin({ reactStrictMode: true, images: { - domains: ['res.cloudinary.com', 'picsum.photos'], // Add Cloudinary or any other external image host here + domains: ['res.cloudinary.com', 'picsum.photos', 'socialcry.com'], // Add Cloudinary or any other external image host here }, }); diff --git a/src/app/events/page.jsx b/src/app/events/page.jsx index 659f96fb..78593a55 100644 --- a/src/app/events/page.jsx +++ b/src/app/events/page.jsx @@ -1,20 +1,21 @@ 'use client'; -// import { Heading3 } from '@/components/shared/Typography/Headings'; -import { EventsContainer, Heading3 } from './page.style'; -import MainCarousel from '@/components/EventsPage/index'; import { - GL_previewItems, GL_descriptionItems, + GL_previewItems, } from '@/config/content/EventsPage/GuestLecture/Data'; - +// import { Heading3 } from '@/components/shared/Typography/Headings'; +import { EventsContainer, Heading3 } from './page.style'; +import MainCarousel from '@/components/EventsPage/index'; import { - FE_previewItems, FE_descriptionItems, + FE_previewItems, } from '@/config/content/EventsPage/FlagshipEvents/Data'; - -import { ME_descriptionItems } from '@/config/content/EventsPage/MainEvents/Data'; +import { + Exhibition_descriptionItems, + Exhibition_previewItems, +} from '@/config/content/EventsPage/Exhibition/Data'; import { DTS_previewItems } from '@/config/content/EventsPage/DTS_Shows/Data'; -import { Exhibition_previewItems } from '@/config/content/EventsPage/Exhibition/Data'; +import { ME_descriptionItems, ME_previewItems } from '@/config/content/EventsPage/MainEvents/Data'; export default function Page() { return ( @@ -24,9 +25,12 @@ export default function Page() { FLAGSHIP EVENTS MAIN EVENTS - + EXHIBITION - + SHOWS AT DTS GALLERY diff --git a/src/app/layout.js b/src/app/layout.js index 51461453..e3f4dbf6 100644 --- a/src/app/layout.js +++ b/src/app/layout.js @@ -96,6 +96,7 @@ export default function RootLayout({ children }) { }} /> + {children} diff --git a/src/components/EventsPage/CardComponents/DetailsCard/DetailsCard.jsx b/src/components/EventsPage/CardComponents/DetailsCard/DetailsCard.jsx index a9f029ba..e7901c6d 100644 --- a/src/components/EventsPage/CardComponents/DetailsCard/DetailsCard.jsx +++ b/src/components/EventsPage/CardComponents/DetailsCard/DetailsCard.jsx @@ -4,23 +4,53 @@ import { DescriptionCardInner, DescriptionCardHeading, DescriptionCardContent, + DescriptionCardBottom, } from './DetailsCard.style'; +// import { MainBar, MenuLogoItem } from '@/components/Marginals/navbar/navbar.styles'; function DetailsCard({ ImageURL, Heading, Description }) { return ( - - - {Heading} - {Description} - - image - +
+ + + {Heading} + {Description} + + image + +
+ +
+ img +
BBA
+
+
+ img +
+
19th OCT
+
4:00 AM
+
+
+
+
+
); } diff --git a/src/components/EventsPage/CardComponents/DetailsCard/DetailsCard.style.jsx b/src/components/EventsPage/CardComponents/DetailsCard/DetailsCard.style.jsx index d0aa7df3..02c271b9 100644 --- a/src/components/EventsPage/CardComponents/DetailsCard/DetailsCard.style.jsx +++ b/src/components/EventsPage/CardComponents/DetailsCard/DetailsCard.style.jsx @@ -4,7 +4,7 @@ import { Heading1 } from '@/components/shared/Typography/Headings'; import { SmallParagraph } from '@/components/shared/Typography/Paragraphs'; export const DescriptionCardContainer = styled.div` - ${tw`w-full flex flex-col-reverse slg:flex-row justify-between bg-transparent pl-2 pr-2 xxs:pl-4 xxs:pr-4 2xs:pl-8 2xs:pr-8 xsm:pl-12 xsm:pr-12 ssm:pl-16 ssm:pr-16 sm:pl-24 sm:pr-24`} + ${tw`w-full flex flex-col-reverse slg:flex-row justify-between items-center bg-transparent pl-2 pr-2 xxs:pl-4 xxs:pr-4 2xs:pl-8 2xs:pr-8 xsm:pl-12 xsm:pr-12 ssm:pl-16 ssm:pr-16 sm:pl-24 sm:pr-24`} `; export const DescriptionCardHeading = styled(Heading1)` @@ -12,7 +12,7 @@ export const DescriptionCardHeading = styled(Heading1)` `; export const DescriptionCardInner = styled.div` - ${tw`flex flex-col max-w-[812px]`} + ${tw`flex flex-col max-w-[812px] `} `; export const DescriptionCardContent = styled(SmallParagraph)` @@ -30,3 +30,12 @@ export const DescriptionCardContent = styled(SmallParagraph)` ${tw`w-full`} } `; +export const DescriptionCardBottom = styled.div` + ${tw`flex gap-10 justify-between h-auto xsm:h-[100px] bg-white/[0.05] items-center p-5 xsm:p-10 text-xs xxxs:text-base xsm:text-2xl rounded-2xl border-[1px] border-white/[0.4]`}; + + backdrop-filter: blur(30px); + background-color: rgba(255, 255, 255, 0.05); + + background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2)); + background-size: 35px 35px; +`; diff --git a/src/components/EventsPage/CardComponents/PreviewCard/PreviewCard.jsx b/src/components/EventsPage/CardComponents/PreviewCard/PreviewCard.jsx index 53a0502d..3331511d 100644 --- a/src/components/EventsPage/CardComponents/PreviewCard/PreviewCard.jsx +++ b/src/components/EventsPage/CardComponents/PreviewCard/PreviewCard.jsx @@ -2,14 +2,14 @@ import Image from 'next/image'; import { PreviewCardContainer, PreviewCardContent, - PreviewCardImage, PreviewMoreInfoButton, + PreviewMoreInfoButton2, } from './PreviewCard.style'; function PreviewCard({ ImageURL, PreviewDescription = '' }) { const words = PreviewDescription?.split(' ') || []; const truncatedDescription = - words.length > 20 ? words.slice(0, 38).join(' ') + '...' : PreviewDescription; + words.length > 20 ? words.slice(0, 30).join(' ') + '...' : PreviewDescription; return ( @@ -18,10 +18,15 @@ function PreviewCard({ ImageURL, PreviewDescription = '' }) { alt='CardImage' width={338} height={250} - className='h-[150px] xxs:h-[165px] 2xs:h-[175px] xsm:h-[199px] ssm:h-[214px] sm:h-[235px] md:h-[260px] w-full md:w-[305px] lg:w-[338px] lg:h-[300px] mb-2 rounded-[17.82px]' + className='rounded-[17.82px] h-[170px] xxs:h-[180px] 2xs:h-[190px] xsm:h-[199px] ssm:h-[214px] sm:h-[235px] md:h-[260px] w-full md:w-[305px] lg:w-[338px] lg:h-[240px] ' /> {truncatedDescription} - MORE +
+ {' '} + {/* Reduced gap for symmetry */} + Rulebook + Register +
); } diff --git a/src/components/EventsPage/CardComponents/PreviewCard/PreviewCard.style.jsx b/src/components/EventsPage/CardComponents/PreviewCard/PreviewCard.style.jsx index f9e4a487..d71fdd59 100644 --- a/src/components/EventsPage/CardComponents/PreviewCard/PreviewCard.style.jsx +++ b/src/components/EventsPage/CardComponents/PreviewCard/PreviewCard.style.jsx @@ -1,29 +1,40 @@ import tw from 'twin.macro'; import styled from 'styled-components'; -import { PrimaryButton } from '@/components/shared/Typography/Buttons'; +import { HeroGreenPrimaryButton, HeroPrimaryButton } from '@/components/Hero Section/styles'; export const PreviewCardContainer = styled.div` - ${tw`w-full h-auto max-w-[280px] xxxs:max-h-[480px] xsm:max-w-[350px] xsm:max-h-[600px] xl:max-w-[460px] xl:h-[605.6px] bg-gradient-to-b from-[#002929] to-[#22002b] rounded-lg shadow-lg border border-[#074870] flex flex-col justify-between items-center p-6 mb-16 gap-y-2`} + ${tw`w-full h-auto max-w-[390px] max-h-[500px] xl:h-[606px] bg-gradient-to-b from-[#002929] to-[#22002b] rounded-lg shadow-lg border border-[#074870] flex flex-col justify-between items-center p-5 mb-16 gap-y-4`} transition: transform 0.3s ease, box-shadow 0.3s ease; - box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.4); - + @media (max-width: 390px) { + ${tw`p-4`}// Adjust padding for smaller screens } `; export const PreviewCardContent = styled.div` - ${tw`w-full max-w-[300px] xl:max-w-[380px] text-center text-white text-xs lg:text-sm font-normal font-montserrat leading-[21px] tracking-wide`} + ${tw`w-full max-w-[350px] text-center text-white text-xs lg:text-sm font-normal font-montserrat leading-[21px] tracking-wide`} +`; + +export const PreviewMoreInfoButton = styled(HeroPrimaryButton)` + ${tw`flex justify-center items-center w-auto h-auto pl-4 pr-4 pt-2 pb-2`} + + box-shadow: 0 0 5px #ff3d7f, 0 0 3px #ff3d7f, 0 0 5px #ff3d7f; + + transition: + box-shadow 0.3s ease, + transform 0.3s ease; + + &:hover { + transform: scale(1.05); + } `; -export const PreviewMoreInfoButton = styled(PrimaryButton)` - ${tw`w-[150px]`} +export const PreviewMoreInfoButton2 = styled(HeroGreenPrimaryButton)` + ${tw`flex justify-center items-center w-auto h-auto p-4 `} - box-shadow: - 0 0 5px #ff3d7f, - 0 0 3px #ff3d7f, - 0 0 5px #ff3d7f; + box-shadow: 0 0 5px #ffffff0d, 0 0 3px #ffffff0d, 0 0 5px #ffffff0d; transition: box-shadow 0.3s ease, @@ -31,10 +42,5 @@ export const PreviewMoreInfoButton = styled(PrimaryButton)` &:hover { transform: scale(1.05); - box-shadow: - 0 0 5px #ff3d7f, - 0 0 10px #ff3d7f, - 0 0 15px #ff3d7f, - 0 0 20px #ff3d7f; } `; diff --git a/src/components/EventsPage/CardData.js b/src/components/EventsPage/CardData.js new file mode 100644 index 00000000..07bb5a13 --- /dev/null +++ b/src/components/EventsPage/CardData.js @@ -0,0 +1,9 @@ +export const Topics = ['Rank', 'Name of college']; + +export const Info = [ + { Rank: '1', college: 'National Institute Of Technology', Students: '100' }, + { Rank: '2', college: 'Indian Institute Of Technology', Students: '80' }, + { Rank: '3', college: 'Birla Institute Of Technology', Students: '70' }, + { Rank: '4', college: 'Institute of Engineering and Technology', Students: '60' }, + { Rank: '5', college: 'Jawaharlal Nehru Technological University', Students: '50' }, +]; diff --git a/src/components/EventsPage/Carousel/PreviewCarousel/EventWrapper.jsx b/src/components/EventsPage/Carousel/PreviewCarousel/EventWrapper.jsx index 97ca62dc..88abcfa9 100644 --- a/src/components/EventsPage/Carousel/PreviewCarousel/EventWrapper.jsx +++ b/src/components/EventsPage/Carousel/PreviewCarousel/EventWrapper.jsx @@ -44,7 +44,7 @@ export const SliderEventsWrapper = ({ previewItems, descriptionItems }) => { const startAutoSlide = () => { autoSlideIntervalRef.current = setInterval(() => { swiperRef.current.swiper.slideNext(); - }, 3000); + }, 6000); }; const resetAutoSlide = () => { @@ -81,7 +81,15 @@ export const SliderEventsWrapper = ({ previewItems, descriptionItems }) => { return !isMobile ? (
- + { previewItems={previewItems} descriptionItems={descriptionItems} /> - +
diff --git a/src/components/EventsPage/Carousel/PreviewCarousel/swiper.css b/src/components/EventsPage/Carousel/PreviewCarousel/swiper.css index 0b61edcc..792cefc0 100644 --- a/src/components/EventsPage/Carousel/PreviewCarousel/swiper.css +++ b/src/components/EventsPage/Carousel/PreviewCarousel/swiper.css @@ -3,6 +3,17 @@ height: 100%; padding-top: 90px; } +.mySwiper3 { + width: 100%; + height: 100%; + padding-top: 90px; +} + +.mySwiper4 { + width: 100%; + height: 100%; + padding-top: 90px; +} .mySwiper2 { width: 100%; @@ -49,3 +60,29 @@ .mySwiper .swiper-slide-next-next { display: none; } + +.mySwiper3 .swiper-slide-active { + transform: translateY(-80px); + opacity: 1; + z-index: 55; + transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); +} + +.mySwiper3 .swiper-slide-next { + opacity: 1; + transform: translateX(-70px); + z-index: 0; + transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); +} + +.mySwiper3 .swiper-slide-prev { + opacity: 1; + transform: translateX(70px); + z-index: 0; + transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); +} + +.mySwiper3 .swiper-slide-prev-prev, +.mySwiper3 .swiper-slide-next-next { + display: none; +} diff --git a/src/components/EventsSection/Header.jsx/header.jsx b/src/components/EventsSection/Header.jsx/header.jsx index 3a6d8f1b..e89938bb 100644 --- a/src/components/EventsSection/Header.jsx/header.jsx +++ b/src/components/EventsSection/Header.jsx/header.jsx @@ -4,7 +4,7 @@ export const Header = () => { return ( <>
-
+
{
-
); diff --git a/src/components/EventsSection/wrapperComponents/CardWrapper.jsx b/src/components/EventsSection/wrapperComponents/CardWrapper.jsx index 44309b37..803acefc 100644 --- a/src/components/EventsSection/wrapperComponents/CardWrapper.jsx +++ b/src/components/EventsSection/wrapperComponents/CardWrapper.jsx @@ -1,22 +1,148 @@ -import { CardLabel } from '../eventCardComponents/Cardlabel'; +'use client'; +import { useState, useEffect, useRef } from 'react'; +import { useAnimate } from 'framer-motion'; +// import { SliderData } from '@/config/content/eventsCarauselData'; +// import { LeftArrowButton, RightArrowButton } from '../../Shared/ArrowButton'; +// import { MobileView } from './MobileView'; +// import { LargeScreenView } from './BigScreenView'; +// import { Wrapper } from './EventWrapper.styles'; +import { Swiper, SwiperSlide } from 'swiper/react'; +import { Pagination } from 'swiper/modules'; import { EventCard } from '../eventCardComponents/EventCard'; +// import { CardLabel } from '../eventCardComponents/Cardlabel'; +// import DescriptionCarousel from '../DescriptionCarousel/DescriptionCarousel'; +import '../../EventsPage/Carousel/PreviewCarousel/swiper.css'; + +export const CardWrapper = ({ items }) => { + const [scope, animate] = useAnimate(); + const [currentIndex, setCurrentIndex] = useState(0); + const [isMobile, setIsMobile] = useState(false); + const swiperRef = useRef(null); + const autoSlideIntervalRef = useRef(null); + const slideWidth = 456.74; + + const updateScreenSize = () => { + setIsMobile(window.innerWidth < 800); + }; + + useEffect(() => { + updateScreenSize(); + window.addEventListener('resize', updateScreenSize); + + return () => window.removeEventListener('resize', updateScreenSize); + }, []); + + const handleNext = () => { + if (isMobile) { + swiperRef.current.swiper.slideNext(); + resetAutoSlide(); + } + }; + + const handlePrev = () => { + if (!isMobile) { + swiperRef.current.swiper.slidePrev(); + resetAutoSlide(); + } + }; + + const onSlideChange = (swiper) => { + setCurrentIndex(swiper.realIndex); + }; + + const startAutoSlide = () => { + autoSlideIntervalRef.current = setInterval(() => { + swiperRef.current.swiper.slidePrev(); + }, 5000); + }; + + const resetAutoSlide = () => { + if (autoSlideIntervalRef.current) { + clearInterval(autoSlideIntervalRef.current); + } + startAutoSlide(); + }; + + useEffect(() => { + !isMobile ? startAutoSlide() : ''; + return () => { + if (autoSlideIntervalRef.current && !isMobile) { + clearInterval(autoSlideIntervalRef.current); + } + }; + }, []); + + useEffect(() => { + if (scope.current) { + const xOffset = -currentIndex * slideWidth; + animate( + scope.current, + { x: xOffset }, + { + duration: 0.3, + ease: [0.42, 0, 0.58, 1], + type: 'tween', + }, + ); + } + }, [currentIndex, animate, scope]); -export const CardWrapper = () => { return ( <> -
- {item.map((items, index) => ( -
+ {!isMobile ? ( + + {item.map((singleItem, index) => ( + +
+ + {/* */} +
+
+ ))} +
+ ) : ( + - - -
- ))} + {item.map((singleItem, index) => ( + +
+ + {/* */} +
+
+ ))} + + )}
); }; -const item = ['FLaGSHIP', 'GUEST LECTURE', 'MaIN EvENTS']; +const item = ['FLAGSHIP', 'GUEST LECTURE', 'MAIN EVENTS']; diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx index 891cffa1..849a07cb 100644 --- a/src/components/Footer/Footer.jsx +++ b/src/components/Footer/Footer.jsx @@ -25,78 +25,116 @@ import { FooterGradient, ListTitle, SocialImageContainer, + Overlay, + Modal, } from './styles'; import { LogoText2 } from '../shared/Typography/Headings'; +// import { createPortal } from 'react-dom'; +import { PaymentPolicyModal } from './PaymentPolicyModel'; +import { useEffect, useState } from 'react'; +import { createPortal } from 'react-dom'; +// import { Modal } from 'flowbite-react'; export const Footer = () => { + const [isRegisterModalOpen, setIsRegisterModalOpen] = useState(false); + const [modalRoot, setModalRoot] = useState(null); + + const handleRegisterModalOpen = () => setIsRegisterModalOpen(true); + const handleRegisterModalClose = () => setIsRegisterModalOpen(false); + + useEffect(() => { + const root = document.getElementById('modal-root'); + if (root) { + setModalRoot(root); + } + }, []); return ( - - - - - - - - Innovision - - {firstcol.title} - {firstcol.year} - - - {firstcol.text} - + <> + + + + + + + + Innovision + + {firstcol.title} + {firstcol.year} + + + {firstcol.text} + + + + + NavIGaTION + {RenderList(secondcol)} + + + + + + {RenderList(thirdcol)} + + + + GET IN TOUCH + + {socials.map((item) => ( +
  • + + + {item.id} + + +
  • + ))} +
    +
    +
    +
    + + + {footerBottom.map((item) => ( + + {item.id === 4 ? ( + + ) : ( + + {item.title} + + )} + + ))} + + +
    +
    - - - NavIGaTION - {RenderList(secondcol)} - - - - - - {RenderList(thirdcol)} - - - - GET IN TOUCH - - {socials.map((item) => ( -
  • - - - {item.id} - - -
  • - ))} -
    -
    -
    -
    - - - {footerBottom.map((item) => ( - - {item.title} - - ))} - - -
    -
    + {modalRoot && + isRegisterModalOpen && + createPortal( + + + + + , + modalRoot, + )} + ); }; diff --git a/src/components/Footer/PaymentPolicyModel.jsx b/src/components/Footer/PaymentPolicyModel.jsx new file mode 100644 index 00000000..7be7083b --- /dev/null +++ b/src/components/Footer/PaymentPolicyModel.jsx @@ -0,0 +1,35 @@ +// import { Modal, Overlay } from '../eventCardComponents/eventCard.style'; +// import { ModalExit, ModalText } from './registerModal.styles'; + +// import { Modal } from "flowbite-react"; +import { Paragraph, SmallParagraph } from '../shared/Typography/Paragraphs'; +import { Modal, ModalExit, ModalText, Overlay, Para } from './styles'; + +export const PaymentPolicyModal = ({ isClose }) => { + return ( + <> + + + Pricing + + The registration fees for Innovision 2024 is ₹899 for all the students from outside NIT + Rourkela. There are no registration fees for students of NIT Rourkela. + + Refund Policy + + Thank you for registering at Innovision 2024. If, for any reason, you are not entirely + satisfied with your purchase, we encourage you to review our refund and return policy. + + Your Registration Cancellation Rights + + There will be no refund of the registration fees under any circumstances unless the fest + is cancelled by team Innovision. + + + close + + + + + ); +}; diff --git a/src/components/Footer/styles.jsx b/src/components/Footer/styles.jsx index 6a5505c1..dff6568f 100644 --- a/src/components/Footer/styles.jsx +++ b/src/components/Footer/styles.jsx @@ -1,5 +1,8 @@ import styled from 'styled-components'; import tw from 'twin.macro'; +import { Heading1 } from '../shared/Typography/Headings'; +import { PrimaryButton } from '../shared/Typography/Buttons'; +import { SmallParagraph } from '../shared/Typography/Paragraphs'; export const FooterContainer = styled.div` ${tw`flex justify-center w-full bg-black bg-opacity-50`} @@ -95,3 +98,26 @@ export const FooterSubLogoText = styled.span` export const ListTitle = styled.li` ${tw`text-[16px] md:text-[18px] lg:text-[20px] xl:text-[23px] tracking-wider font-spaceX list-none `} `; + +export const Overlay = styled.div` + ${tw`fixed top-0 left-0 bottom-0 flex justify-center bg-[#04081A]/[0.4] backdrop-blur bg-cover items-center w-full z-50`}; + transition: + transform 0.3s ease, + opacity 0.3s ease; +`; + +export const Modal = styled.div` + ${tw`pl-3 pr-3 rounded-2xl shadow-lg max-w-[400px] flex flex-col items-start gap-5 max-h-[550px] overflow-auto w-full border-[1px] pt-5 pb-5 border-[#00FFD1] bg-[#04081A]`} + transition: transform 0.3s ease, opacity 0.3s ease; +`; + +export const ModalText = styled(Heading1)` + ${tw`font-bold text-left text-[20px] border-none m-0 p-0`} +`; + +export const ModalExit = styled(PrimaryButton)` + ${tw`font-normal hover:scale-105 `} +`; +export const Para = styled(SmallParagraph)` + ${tw`text-left `} +`; diff --git a/src/components/Statistics/Header/Header.jsx b/src/components/Statistics/Header/Header.jsx index b11406b0..9335b108 100644 --- a/src/components/Statistics/Header/Header.jsx +++ b/src/components/Statistics/Header/Header.jsx @@ -4,12 +4,12 @@ import { JetImage } from './JetImage'; export const Header = () => { return ( <> -
    -
    +
    +
    - STATISTICS -
    + STATISTICS +
    ); diff --git a/src/components/Statistics/card/card.jsx b/src/components/Statistics/card/card.jsx index dc383763..024bcc22 100644 --- a/src/components/Statistics/card/card.jsx +++ b/src/components/Statistics/card/card.jsx @@ -10,7 +10,7 @@ export const Card = () => { className='w-auto md:max-w-[1200px] min-h-[400px] md:min-h-[548px] h-auto bg-[#091123] rounded-[16px] md:rounded-[24px] p-4 md:p-12 lg:p-24 mx-auto content-center' >
    - Top College Students Registered for Innovision + Top College Registered for Innovision
    @@ -34,9 +34,6 @@ export const Card = () => { {item.college} - - {item.Students} - ))} diff --git a/src/components/Statistics/wrapper/Body.jsx b/src/components/Statistics/wrapper/Body.jsx index 9af38bfc..e7c39998 100644 --- a/src/components/Statistics/wrapper/Body.jsx +++ b/src/components/Statistics/wrapper/Body.jsx @@ -4,8 +4,8 @@ import { GraphMain } from '../PiChart/main'; export const Body = () => { return ( <> -
    -
    +
    +
    diff --git a/src/config/content/EventsPage/DTS_Shows/Data.js b/src/config/content/EventsPage/DTS_Shows/Data.js index d535f154..d93f86a9 100644 --- a/src/config/content/EventsPage/DTS_Shows/Data.js +++ b/src/config/content/EventsPage/DTS_Shows/Data.js @@ -1,109 +1,65 @@ export const DTS_previewItems = [ { id: 1, - ImageURL: 'https://picsum.photos/500', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', PreviewDescription: - 'Get ready for Death Race, a two-day robotics competition where participants drive their robots through a track filled with obstacles and challenges. The fastest robot to navigate the course and score the most points wins. Brace yourself for an intense and thrilling showdown!', + 'Prepare to be swept off your feet by Synergy! Be ready to be dazzled by their passion, energy, and creativity on stage. With a vibrant mix of dance styles, Showdown promises to be a thrilling display of talent and artistry...', }, { id: 2, - ImageURL: 'https://picsum.photos/600', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', PreviewDescription: - 'Aeroprix, the flagship aeronautic event of Innovision 2024, brings together the sharpest minds in RC aviation. Prepare to be amazed as teams from across the country showcase their engineering prowess, flying state-of-the-art RC aircrafts in a high-stakes competition that tests creativity and precision.', + 'Euphony, the official rock band of NITR, having a legacy spanning over 25 years is back with another thrilling edition of Euphony LIVE! Get ready to rock the night away with an exhilarating set comprising of popular English and Hindi tracks...', }, { id: 3, - ImageURL: 'https://picsum.photos/400', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', PreviewDescription: - 'Unleash your moves in The Hustlemania 3.0.This thrilling freestyle dance event features Solo and Duo categories, each with Prelims and Final rounds where participants bring their best in just 60 seconds. The intensity peaks in the final round with a head-to-head face-off on random music tracks.', + 'Join us for a captivating Dance Showcase presented by The Mavericks, the official dance club of NITR and celebrate the art of movement and expression! Featuring an array of performances from talented dancers...', }, { id: 4, - ImageURL: 'https://picsum.photos/600', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', PreviewDescription: - 'Embark on an immersive journey with Game Showcase, a virtual reality game and campus tour designed to transport you into a stunning digital landscape where exploration meets adventure. Explore the enormous campus of NIT Rourkela virtually through Oculus Virtual Reality headsets and experience your surroundings like never before.', - }, - { - id: 5, - ImageURL: 'https://picsum.photos/500', - PreviewDescription: - 'Embark on a thrilling adventure through a maze built inside a tent! Along the way, solve questions at checkpoints to progress. Your goal? Find and conquer as many checkpoints as possible before time runs out. The participants with the most checkpoints and correct answers will claim victory. Test your problem-solving, strategy, and navigation in this exciting race against time!', - }, - { - id: 6, - ImageURL: 'https://picsum.photos/600', - PreviewDescription: - 'The Ultimate Treasure Hunt is a thrill ing adventure where logic, strategy, and math skills are your keys to success. Teams will embark on a campus-wide hunt, so ving puzzles and cracking codes that lead to hidden treasures. Each step tests problem-solving, creativity, and teamwork. The clues will challenge your mathematical limits while keeping the excitement high.', - }, - { - id: 7, - ImageURL: 'https://picsum.photos/400', - PreviewDescription: - 'The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interact ive game involving a logrithmic problems and brainstorming quizzes that will enthral the participants in an adrenaline-filled atmosphere, testing their cognitive as well as coding skills. Presenting a cosmos of challenging problems at different levels, th is competition will be both exciting and unforgettable. Dont miss out!', - }, - { - id: 8, - ImageURL: 'https://picsum.photos/500', - PreviewDescription: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', + "Get ready to vibe with Drill N' Bass at Trancenation! Experience a night filled with exhilarating beats that blend EDM, pop, and hip-hop...", }, ]; -export const FE_descriptionItems = [ +export const DTS_descriptionItems = [ { id: 1, - Heading: 'DEATHRACE', + Heading: 'SHOWDOWN', Description: - 'In the race of innovation, speed is not just an advantage; it’s the only option. Get ready for Death Race, a two-day robotics competition where participants drive their robots through a track filled with obstacles and challenges. The fastest robot to navigate the course and score the most points wins. Brace yourself for an intense and thrilling showdown!', - ImageURL: 'https://picsum.photos/800', + 'Prepare to be swept off your feet by Synergy! Be ready to be dazzled by their passion, energy, and creativity on stage. With a vibrant mix of dance styles, Showdown promises to be a thrilling display of talent and artistry. Join us for a night filled with captivating choreography, infectious rhythms, and powerful expressions as Synergy brings their unique stories to life through movement. This isn’t just a dance performance; it’s a celebration of unity, creativity, and the joy of expression. Don’t miss the chance to experience the magic of dance!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: 'DTS Stage', + Date: '', }, { id: 2, - Heading: 'AEROPRIX', + Heading: 'Euphony LIVE', Description: - 'When passion meets the skies, innovation soars! Aeroprix, the flagship aeronautic event of Innovision 2024, brings together the sharpest minds in RC aviation. Prepare to be amazed as teams from across the country showcase their engineering prowess, flying state-of-the-art RC aircrafts in a high-stakes competition that tests creativity and precision.', - ImageURL: 'https://picsum.photos/900', + 'Euphony, the official rock band of NITR, having a legacy spanning over 25 years is back with another thrilling edition of Euphony LIVE! Get ready to rock the night away with an exhilarating set comprising of popular English and Hindi tracks. The conglomeration of Euphony’s dynamic presence, soulful vocals and rich instrumentals is sure to captivate the audience and evoke a sense of absolute euphoria. So grab your friends and join us in this electrifying atmosphere where music lovers unite!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: 'DTS Stage', + Date: '', }, { id: 3, - Heading: 'HUSTLEMANIA 3.O', + Heading: 'Dance Showcase', Description: - 'Unleash your moves in The Hustlemania 3.0.This thrilling freestyle dance event features Solo and Duo categories, each with Prelims and Final rounds where participants bring their best in just 60 seconds. The intensity peaks in the final round with a head-to-head face-off on random music tracks.', - ImageURL: 'https://picsum.photos/800', + 'Join us for a captivating Dance Showcase presented by The Mavericks, the official dance club of NITR and celebrate the art of movement and expression! Featuring an array of performances from talented dancers, this event promises to take you on a vibrant journey through rhythm, movement and creativity.With dazzling choreography, stunning costumes, and an electrifying atmosphere, this showcase is sure to give you goosebumps. So get ready to groove!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: 'DTS Stage', + Date: '', }, { id: 4, - Heading: 'GAMESHOWCASE', - Description: - 'Embark on an immersive journey with Game Showcase, a virtual reality game and campus tour designed to transport you into a stunning digital landscape where exploration meets adventure. Explore the enormous campus of NIT Rourkela virtually through Oculus Virtual Reality headsets and experience your surroundings like never before.', - ImageURL: 'https://picsum.photos/600', - }, - { - id: 5, - Heading: 'MAZEHUNT', - Description: - 'Embark on a thrilling adventure through a maze built inside a tent! Along the way, solve questions at checkpoints to progress. Your goal? Find and conquer as many checkpoints as possible before time runs out. The participants with the most checkpoints and correct answers will claim victory. Test your problem-solving, strategy, and navigation in this exciting race against time!', - ImageURL: 'https://picsum.photos/800', - }, - { - id: 6, - Heading: 'OMEGA', - Description: - 'The Ultimate Treasure Hunt is a thrilling adventure where logic, strategy, and math skills are your keys to success. Teams will embark on a campus-wide hunt, soljving puzzles and cracking codes that lead to hidden treasures. Each step tests problem-solving, creativity, and teamwork. The clues will challenge your mathematical limits while keeping the excitement high.', - ImageURL: 'https://picsum.photos/900', - }, - { - id: 7, - Heading: 'METEOR MADNESS', - Description: - 'The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interact ive game involving a logrithmic problems and brainstorming quizzes that will enthral the participants in an adrenaline-filled atmosphere, testing their cognitive as well as coding skills. Presenting a cosmos of challenging problems at different levels, th is competition will be both exciting and unforgettable. Dont miss out!', - ImageURL: 'https://picsum.photos/800', - }, - { - id: 8, - Heading: 'STELLAR NIGHT', + Heading: 'Transcenation', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + "Get ready to vibe with Drill N' Bass at Trancenation! Experience a night filled with exhilarating beats that blend EDM, pop, and hip-hop! Kick things off with a 45-minute live set of crowd favorites, followed by an epic 1-hour DJ set featuring original bangers from our crew.", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: 'DTS Stage', + Date: '', }, ]; diff --git a/src/config/content/EventsPage/Exhibition/Data.js b/src/config/content/EventsPage/Exhibition/Data.js index 90930ca4..5ada012b 100644 --- a/src/config/content/EventsPage/Exhibition/Data.js +++ b/src/config/content/EventsPage/Exhibition/Data.js @@ -1,109 +1,65 @@ export const Exhibition_previewItems = [ { id: 1, - ImageURL: 'https://picsum.photos/500', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', PreviewDescription: - 'Get ready for Death Race, a two-day robotics competition where participants drive their robots through a track filled with obstacles and challenges. The fastest robot to navigate the course and score the most points wins. Brace yourself for an intense and thrilling showdown!', + 'IRIDESCENCE is the flagship event hosted by DESIGN TAB, the official design club of NIT Rourkela, as part of INNOVISION. This exhibition is a vibrant celebration of creativity...', }, { id: 2, - ImageURL: 'https://picsum.photos/600', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', PreviewDescription: - 'Aeroprix, the flagship aeronautic event of Innovision 2024, brings together the sharpest minds in RC aviation. Prepare to be amazed as teams from across the country showcase their engineering prowess, flying state-of-the-art RC aircrafts in a high-stakes competition that tests creativity and precision.', + 'We invite you to RADIANCE 6.0, an elaborate art and craft exhibition organised and hosted by Akriti, the official art and craft club of NITR. Every year...', }, { id: 3, - ImageURL: 'https://picsum.photos/400', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', PreviewDescription: - 'Unleash your moves in The Hustlemania 3.0.This thrilling freestyle dance event features Solo and Duo categories, each with Prelims and Final rounds where participants bring their best in just 60 seconds. The intensity peaks in the final round with a head-to-head face-off on random music tracks.', + 'Get ready for some serious innovation at Little Science Yard (LSY), brought to you by AASRA! Students across Rourkela will gather to show off their coolest science projects...', }, { id: 4, - ImageURL: 'https://picsum.photos/600', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', PreviewDescription: - 'Embark on an immersive journey with Game Showcase, a virtual reality game and campus tour designed to transport you into a stunning digital landscape where exploration meets adventure. Explore the enormous campus of NIT Rourkela virtually through Oculus Virtual Reality headsets and experience your surroundings like never before.', - }, - { - id: 5, - ImageURL: 'https://picsum.photos/500', - PreviewDescription: - 'Embark on a thrilling adventure through a maze built inside a tent! Along the way, solve questions at checkpoints to progress. Your goal? Find and conquer as many checkpoints as possible before time runs out. The participants with the most checkpoints and correct answers will claim victory. Test your problem-solving, strategy, and navigation in this exciting race against time!', - }, - { - id: 6, - ImageURL: 'https://picsum.photos/600', - PreviewDescription: - 'The Ultimate Treasure Hunt is a thrill ing adventure where logic, strategy, and math skills are your keys to success. Teams will embark on a campus-wide hunt, so ving puzzles and cracking codes that lead to hidden treasures. Each step tests problem-solving, creativity, and teamwork. The clues will challenge your mathematical limits while keeping the excitement high.', - }, - { - id: 7, - ImageURL: 'https://picsum.photos/400', - PreviewDescription: - 'The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interact ive game involving a logrithmic problems and brainstorming quizzes that will enthral the participants in an adrenaline-filled atmosphere, testing their cognitive as well as coding skills. Presenting a cosmos of challenging problems at different levels, th is competition will be both exciting and unforgettable. Dont miss out!', - }, - { - id: 8, - ImageURL: 'https://picsum.photos/500', - PreviewDescription: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', + 'SRIJAN 7.0 is a main attraction of INNOVISION, organized by the Students of Planning and Architecture, featuring a diverse range of interactive art installations, drawings, photographs, paintings, optical illusions...', }, ]; -export const FE_descriptionItems = [ +export const Exhibition_descriptionItems = [ { id: 1, - Heading: 'DEATHRACE', + Heading: 'IRIDESCENSE', Description: - 'In the race of innovation, speed is not just an advantage; it’s the only option. Get ready for Death Race, a two-day robotics competition where participants drive their robots through a track filled with obstacles and challenges. The fastest robot to navigate the course and score the most points wins. Brace yourself for an intense and thrilling showdown!', - ImageURL: 'https://picsum.photos/800', + 'IRIDESCENCE is the flagship event hosted by DESIGN TAB, the official design club of NIT Rourkela, as part of INNOVISION. This exhibition is a vibrant celebration of creativity, showcasing an impressive array of artworks, including graphic illustrations, 3D models, typographic arts, crafts, fine arts, and more—all crafted by our talented club members. This year, IRIDESCENCE promises to be more dynamic, interactive, and visually captivating than ever, ensuring a memorable experience. Join us for this euphoric journey through the world of art!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: '', + Date: '', }, { id: 2, - Heading: 'AEROPRIX', + Heading: 'RADIANCE 6.0', Description: - 'When passion meets the skies, innovation soars! Aeroprix, the flagship aeronautic event of Innovision 2024, brings together the sharpest minds in RC aviation. Prepare to be amazed as teams from across the country showcase their engineering prowess, flying state-of-the-art RC aircrafts in a high-stakes competition that tests creativity and precision.', - ImageURL: 'https://picsum.photos/900', + 'We invite you to RADIANCE 6.0, an elaborate art and craft exhibition organised and hosted by Akriti, the official art and craft club of NITR. Every year, Radiance serves as a platform for artists to express their artistic visions and experiment with new techniques, bringing together a vibrant array of artworks of different art forms, including paintings, sculptures, handmade crafts and more. Join us for this inspiring experience and immerse yourself In the world of art!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: '', + Date: '', }, { id: 3, - Heading: 'HUSTLEMANIA 3.O', + Heading: 'LITTLE SCIENCE YARD', Description: - 'Unleash your moves in The Hustlemania 3.0.This thrilling freestyle dance event features Solo and Duo categories, each with Prelims and Final rounds where participants bring their best in just 60 seconds. The intensity peaks in the final round with a head-to-head face-off on random music tracks.', - ImageURL: 'https://picsum.photos/800', + "Get ready for some serious innovation at Little Science Yard (LSY), brought to you by AASRA! Students across Rourkela will gather to show off their coolest science projects, packed with creativity and brainpower. With a panel of judges on hand, only the most mind-blowing ideas will make it to the top and score those winning spots. Think you've got what it takes to impress?", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: 'Chemical Dept Parking', + Date: '', }, { id: 4, - Heading: 'GAMESHOWCASE', - Description: - 'Embark on an immersive journey with Game Showcase, a virtual reality game and campus tour designed to transport you into a stunning digital landscape where exploration meets adventure. Explore the enormous campus of NIT Rourkela virtually through Oculus Virtual Reality headsets and experience your surroundings like never before.', - ImageURL: 'https://picsum.photos/600', - }, - { - id: 5, - Heading: 'MAZEHUNT', - Description: - 'Embark on a thrilling adventure through a maze built inside a tent! Along the way, solve questions at checkpoints to progress. Your goal? Find and conquer as many checkpoints as possible before time runs out. The participants with the most checkpoints and correct answers will claim victory. Test your problem-solving, strategy, and navigation in this exciting race against time!', - ImageURL: 'https://picsum.photos/800', - }, - { - id: 6, - Heading: 'OMEGA', - Description: - 'The Ultimate Treasure Hunt is a thrilling adventure where logic, strategy, and math skills are your keys to success. Teams will embark on a campus-wide hunt, soljving puzzles and cracking codes that lead to hidden treasures. Each step tests problem-solving, creativity, and teamwork. The clues will challenge your mathematical limits while keeping the excitement high.', - ImageURL: 'https://picsum.photos/900', - }, - { - id: 7, - Heading: 'METEOR MADNESS', - Description: - 'The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interact ive game involving a logrithmic problems and brainstorming quizzes that will enthral the participants in an adrenaline-filled atmosphere, testing their cognitive as well as coding skills. Presenting a cosmos of challenging problems at different levels, th is competition will be both exciting and unforgettable. Dont miss out!', - ImageURL: 'https://picsum.photos/800', - }, - { - id: 8, - Heading: 'STELLAR NIGHT', + Heading: 'SRIJAN 7.0', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'SRIJAN 7.0 is a main attraction of INNOVISION, organized by the Students of Planning and Architecture, featuring a diverse range of interactive art installations, drawings, photographs, paintings, optical illusions and much more. These exhibits highlight architectural creativity, exploring various styles, forms, and techniques and delving into the connections and harmony between different architectural expressions and environments. Join us for SRIJAN 7.0 and experience euphroria!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: 'RM HALL', + Date: '', }, ]; diff --git a/src/config/content/EventsPage/FlagshipEvents/Data.js b/src/config/content/EventsPage/FlagshipEvents/Data.js index 9c50126b..de5abf42 100644 --- a/src/config/content/EventsPage/FlagshipEvents/Data.js +++ b/src/config/content/EventsPage/FlagshipEvents/Data.js @@ -1,51 +1,54 @@ export const FE_previewItems = [ { id: 1, - ImageURL: 'https://picsum.photos/500', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179008/inno-2024/Event%20Posters/Cyborg/DeathRace/ljimi3k8z9jb1ee75jgr.jpg', PreviewDescription: 'Get ready for Death Race, a two-day robotics competition where participants drive their robots through a track filled with obstacles and challenges. The fastest robot to navigate the course and score the most points wins. Brace yourself for an intense and thrilling showdown!', }, { id: 2, - ImageURL: 'https://picsum.photos/600', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179013/inno-2024/Event%20Posters/UDAAN/v4yhrdzyfrok0vnweijv.png', PreviewDescription: 'Aeroprix, the flagship aeronautic event of Innovision 2024, brings together the sharpest minds in RC aviation. Prepare to be amazed as teams from across the country showcase their engineering prowess, flying state-of-the-art RC aircrafts in a high-stakes competition that tests creativity and precision.', }, { id: 3, - ImageURL: 'https://picsum.photos/400', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // GTA (To be updated) PreviewDescription: - 'Unleash your moves in The Hustlemania 3.0.This thrilling freestyle dance event features Solo and Duo categories, each with Prelims and Final rounds where participants bring their best in just 60 seconds. The intensity peaks in the final round with a head-to-head face-off on random music tracks.', + 'Embark on an immersive journey with Game Showcase, a virtual reality game and campus tour designed to transport you into a stunning digital landscape where exploration meets adventure. Explore the enormous campus of NIT Rourkela virtually through Oculus Virtual Reality headsets and experience your surroundings like never before.', }, { id: 4, - ImageURL: 'https://picsum.photos/600', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // GENESYS To be updated PreviewDescription: - 'Embark on an immersive journey with Game Showcase, a virtual reality game and campus tour designed to transport you into a stunning digital landscape where exploration meets adventure. Explore the enormous campus of NIT Rourkela virtually through Oculus Virtual Reality headsets and experience your surroundings like never before.', + 'Embark on a thrilling adventure through a maze built inside a tent! Along the way, solve questions at checkpoints to progress. Your goal? Find and conquer as many checkpoints as possible before time runs out. The participants with the most checkpoints and correct answers will claim victory. Test your problem-solving, strategy, and navigation in this exciting race against time!', }, { id: 5, - ImageURL: 'https://picsum.photos/500', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // AXIOM To be updated PreviewDescription: - 'Embark on a thrilling adventure through a maze built inside a tent! Along the way, solve questions at checkpoints to progress. Your goal? Find and conquer as many checkpoints as possible before time runs out. The participants with the most checkpoints and correct answers will claim victory. Test your problem-solving, strategy, and navigation in this exciting race against time!', + 'The Ultimate Treasure Hunt is a thrill ing adventure where logic, strategy, and math skills are your keys to success. Teams will embark on a campus-wide hunt, so ving puzzles and cracking codes that lead to hidden treasures. Each step tests problem-solving, creativity, and teamwork. The clues will challenge your mathematical limits while keeping the excitement high.', }, { id: 6, - ImageURL: 'https://picsum.photos/600', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // APS To be updated PreviewDescription: - 'The Ultimate Treasure Hunt is a thrill ing adventure where logic, strategy, and math skills are your keys to success. Teams will embark on a campus-wide hunt, so ving puzzles and cracking codes that lead to hidden treasures. Each step tests problem-solving, creativity, and teamwork. The clues will challenge your mathematical limits while keeping the excitement high.', + 'The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interact ive game involving a logrithmic problems and brainstorming quizzes that will enthral the participants in an adrenaline-filled atmosphere, testing their cognitive as well as coding skills. Presenting a cosmos of challenging problems at different levels, th is competition will be both exciting and unforgettable. Dont miss out!', }, { id: 7, - ImageURL: 'https://picsum.photos/400', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179001/inno-2024/Event%20Posters/Astro_NITR/clqps60ndso26fmw101a.png', PreviewDescription: - 'The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interact ive game involving a logrithmic problems and brainstorming quizzes that will enthral the participants in an adrenaline-filled atmosphere, testing their cognitive as well as coding skills. Presenting a cosmos of challenging problems at different levels, th is competition will be both exciting and unforgettable. Dont miss out!', + 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', }, { id: 8, - ImageURL: 'https://picsum.photos/500', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //TBA PreviewDescription: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', + '"Chemistry has energy and it\'s meant to be felt." In this thrilling event, teams of up to 5 students are challenged to design and construct a miniature car powered solely by chemical reactions.', }, ]; @@ -54,56 +57,84 @@ export const FE_descriptionItems = [ id: 1, Heading: 'DEATHRACE', Description: - 'In the race of innovation, speed is not just an advantage; it’s the only option. Get ready for Death Race, a two-day robotics competition where participants drive their robots through a track filled with obstacles and challenges. The fastest robot to navigate the course and score the most points wins. Brace yourself for an intense and thrilling showdown!', - ImageURL: 'https://picsum.photos/800', + ' "In the race of innovation, speed is not just an advantage"; it’s the only option. Get ready for Death Race, a two-day robotics competition where participants drive their robots through a track filled with obstacles and challenges. The fastest robot to navigate the course and score the most points wins. Brace yourself for an intense and thrilling showdown!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179008/inno-2024/Event%20Posters/Cyborg/DeathRace/ljimi3k8z9jb1ee75jgr.jpg', + Location: 'SAC (In front of SAC stairs)', + Date: 'Day 2, Day 3', + Prizes: '₹40000', }, { id: 2, Heading: 'AEROPRIX', Description: - 'When passion meets the skies, innovation soars! Aeroprix, the flagship aeronautic event of Innovision 2024, brings together the sharpest minds in RC aviation. Prepare to be amazed as teams from across the country showcase their engineering prowess, flying state-of-the-art RC aircrafts in a high-stakes competition that tests creativity and precision.', - ImageURL: 'https://picsum.photos/900', + '"When passion meets the skies, innovation soars!" Aeroprix, the flagship aeronautic event of Innovision 2024, brings together the sharpest minds in RC aviation. Prepare to be amazed as teams from across the country showcase their engineering prowess, flying state-of-the-art RC aircrafts in a high-stakes competition that tests creativity and precision.', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179013/inno-2024/Event%20Posters/UDAAN/v4yhrdzyfrok0vnweijv.png', + Location: 'STS Ground', + Date: 'Day 2', + Prizes: '₹15000', }, { id: 3, - Heading: 'HUSTLEMANIA 3.O', + Heading: 'Campus Survival: The VR Expedition', Description: - 'Unleash your moves in The Hustlemania 3.0.This thrilling freestyle dance event features Solo and Duo categories, each with Prelims and Final rounds where participants bring their best in just 60 seconds. The intensity peaks in the final round with a head-to-head face-off on random music tracks.', - ImageURL: 'https://picsum.photos/800', + "Step into the shoes of the last remaining heroes in Campus Survival: The VR Expedition. The world is on the brink of collapse, and the only hope lies within the NIT Rourkela campus. Your mission: retrieve the antidote and save humanity. With danger lurking around every corner, it's up to you and your teammate to navigate the campus, outsmart threats, and complete the mission. This is more than just a game-it's a pulse-pounding adventure where every second counts. Are you ready to be the last survivors?", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png600', // GTA To be updated + Location: '', + Date: '', + Prizes: '₹6000', }, { id: 4, - Heading: 'GAMESHOWCASE', + Heading: 'MAZEHUNT', Description: - 'Embark on an immersive journey with Game Showcase, a virtual reality game and campus tour designed to transport you into a stunning digital landscape where exploration meets adventure. Explore the enormous campus of NIT Rourkela virtually through Oculus Virtual Reality headsets and experience your surroundings like never before.', - ImageURL: 'https://picsum.photos/600', + 'Step into a thrilling adventure as you navigate through a maze constructed within a tent. Along the way, participants will encounter checkpoints where they must solve questions to continue their journey. The objective? Find and conquer as many checkpoints as possible before time runs out! The participants who discover the most checkpoints and answer the questions correctly will emerge victorious. Get ready to test your problem-solving skills, strategy, and sense of direction in this exciting race against time!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // GENESYS To be updated + Location: 'LA-1 Cycle Parking', + Date: '', + Prizes: '₹8000', }, { id: 5, - Heading: 'MAZEHUNT', + Heading: 'OMEGA', Description: - 'Embark on a thrilling adventure through a maze built inside a tent! Along the way, solve questions at checkpoints to progress. Your goal? Find and conquer as many checkpoints as possible before time runs out. The participants with the most checkpoints and correct answers will claim victory. Test your problem-solving, strategy, and navigation in this exciting race against time!', - ImageURL: 'https://picsum.photos/800', + 'Get ready for Death Race, a two-day robotics competition where participants drive their robots through a track filled with obstacles and challenges. The fastest robot to navigate the course and score the most points wins. Brace yourself for an intense and thrilling showdown!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // AXIOM To be updated + Location: 'LA Lawns, LA 004, LA 009, Academic Area', + Date: 'Day 2', + Prizes: '₹8000', }, { id: 6, - Heading: 'OMEGA', + Heading: 'METEOR MADNESS', Description: - 'The Ultimate Treasure Hunt is a thrilling adventure where logic, strategy, and math skills are your keys to success. Teams will embark on a campus-wide hunt, soljving puzzles and cracking codes that lead to hidden treasures. Each step tests problem-solving, creativity, and teamwork. The clues will challenge your mathematical limits while keeping the excitement high.', - ImageURL: 'https://picsum.photos/900', + "The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interactive game involving algorithmic problems and brainstorming quizzes that will enthral the participants in an adrenaline-filled atmosphere, testing their cognitive as well as coding skills. Presenting a cosmos of challenging problems at different levels, this competition will be both exciting and unforgettable. Don't miss out!", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // APS To be updated + Location: '', + Date: '', + Prizes: '₹8000', }, { id: 7, - Heading: 'METEOR MADNESS', + Heading: 'STELLAR NIGHT', Description: - 'The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interact ive game involving a logrithmic problems and brainstorming quizzes that will enthral the participants in an adrenaline-filled atmosphere, testing their cognitive as well as coding skills. Presenting a cosmos of challenging problems at different levels, th is competition will be both exciting and unforgettable. Dont miss out!', - ImageURL: 'https://picsum.photos/800', + "Get ready to embark on a magical journey through the cosmos with Stellar Night, brought to you by Astro NITR! As one of the signature events of Innovision, Stellar Night offers an unforgettable celestial experience, where the wonders of the universe come to life. With high-powered telescopes provided by the club—two CPC automated and one manual—you’ll have the rare opportunity to observe stunning sights like the Moon, Mars, Saturn, Jupiter, and its four Galilean moons. Whether you're an astronomy enthusiast or just curious about the night sky, Stellar Night promises an awe-inspiring blend of stargazing, science, and entertainment. Join us for a night under the stars, and let the universe amaze you!", + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179001/inno-2024/Event%20Posters/Astro_NITR/clqps60ndso26fmw101a.png', + Location: '', + Date: '', + Prizes: '', }, { id: 8, - Heading: 'STELLAR NIGHT', + Heading: 'CHEM-E-CAR', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + '"Chemistry has energy and it\'s meant to be felt." In this thrilling event, teams of up to 5 students are challenged to design and construct a miniature car powered solely by chemical reactions. From the moment it starts to its final stop, every aspect of the car\'s motion must be driven by chemical processes, with no electricity or manual intervention. This event challenges you to merge chemistry with engineering and problem-solving skills. Come experience the thrill of innovation as your creation races into action. ', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: + 'LA-Room for Day 01(for workshop) , Chemical Eng. Dept New Seminar Hall for Day 03: Chem-E-Car Test Run', + Date: 'Day 01(workshop)(02:00 PM - 05:00 PM), Day 03(Car Testing) (11:00 AM - 01:00 PM)', + Prizes: '', }, ]; diff --git a/src/config/content/EventsPage/GuestLecture/Data.js b/src/config/content/EventsPage/GuestLecture/Data.js index 91789c26..25f796d6 100644 --- a/src/config/content/EventsPage/GuestLecture/Data.js +++ b/src/config/content/EventsPage/GuestLecture/Data.js @@ -1,101 +1,95 @@ export const GL_previewItems = [ { id: 1, - ImageURL: 'https://picsum.photos/500', - PreviewDescription: 'xbvfxvbzfdbzvcbvcbvcbvcbcvb', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + PreviewDescription: + '"Late-night study sessions may blur, but the impact of Physics Wallah is unforgettable." E-Cell proudly presents Alakh Pandey, who began as a YouTuber and transformed into the founder of Physics Wallah, one of India’s most beloved educational platforms...', }, { id: 2, - ImageURL: 'https://picsum.photos/600', - PreviewDescription: 'xbvfxvbzfdbzvcbvcbsvgfsdgdsvcbvcbcvb', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + PreviewDescription: + 'The Food Tech Society is organizing a 1.5-hour Guest Lecture, aimed at providing valuable insights into the latest advancements and trends in the food technology industry...', }, { id: 3, - ImageURL: 'https://picsum.photos/400', - PreviewDescription: 'xbvfxvbzfdbcvzvczxzvcbvcbvcbvcbcvb', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + PreviewDescription: + 'The Astro Guest Lecture/Workshop on Astrophotography is an engaging event led by a renowned astrophysicist or celebrated astrophotographer. The session explores advanced techniques...', }, { id: 4, - ImageURL: 'https://picsum.photos/600', - PreviewDescription: 'xbvfxvbsvdcszzfdbzvcbvcbvcbvcbcvb', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + PreviewDescription: + "Join us as an industry expert delves into the fascinating world of NLP, the technology behind AI's ability to understand, interpret, and generate human language. From chatbots and virtual assistants to machine translation...", }, { id: 5, - ImageURL: 'https://picsum.photos/500', - PreviewDescription: 'xbvfxvbzfdbzvcbvcbvcbvcbcvb', - // other props for Preview + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + PreviewDescription: + 'Get ready for some serious innovation at Little Science Yard (LSY), brought to you by AASRA! Students across Rourkela will gather to show off their coolest science projects, packed with creativity and brainpower...', }, { id: 6, - ImageURL: 'https://picsum.photos/600', - PreviewDescription: 'xbvfxvbzfdbzvcbvcbsvgfsdgdsvcbvcbcvb', - }, - { - id: 7, - ImageURL: 'https://picsum.photos/400', - PreviewDescription: 'xbvfxvbzfdbcvzvczxzvcbvcbvcbvcbcvb', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + PreviewDescription: + 'Join us for an inspiring and insightful session as we host a guest lecture by a prominent personality in the Tech Domain.Attendees will gain valuable perspectives on the evolution of tech...', }, ]; export const GL_descriptionItems = [ { id: 1, - Heading: 'Event 1', - Description: 'Description for Event 1', - ImageURL: 'https://picsum.photos/800', + Heading: 'Guest Lecture - ALAKH PANDEY', + Description: + '"Late-night study sessions may blur, but the impact of Physics Wallah is unforgettable." E-Cell proudly presents Alakh Pandey, who began as a YouTuber and transformed into the founder of Physics Wallah, one of India’s most beloved educational platforms. His journey from teaching online to creating a revolutionary ed-tech platform is a story of determination and innovation. Be ready to draw inspiration from his incredible rise.', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: 'BBA', + Date: 'DAY 2', }, { id: 2, - Heading: 'Event 2', - Description: 'Description for Event 2', - ImageURL: 'https://picsum.photos/900', + Heading: 'Guest Lecture - FOOD TECH SOCIETY', + Description: + 'The Food Tech Society is organizing a 1.5-hour Guest Lecture, aimed at providing valuable insights into the latest advancements and trends in the food technology industry. This lecture offers a unique opportunity to learn from an expert in the field, fostering knowledge and sparking interest in innovative food tech solutions.', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: '', + Date: '', }, { id: 3, - Heading: 'Event 3', - Description: 'Description for Event 3', - ImageURL: 'https://picsum.photos/800', + Heading: 'Guest Lecture - ASTRONITR', + Description: + 'The Astro Guest Lecture/Workshop on Astrophotography is an engaging event led by a renowned astrophysicist or celebrated astrophotographer. The session explores advanced techniques for capturing the night sky, covering the use of telescopes, cameras, and image processing software. Participants, from beginners to experts, gain practical insights to enhance their astrophotography skills. A Q&A session allows direct interaction with the guest speaker, making this workshop a unique opportunity to learn from a leading figure and capture the beauty of the cosmos.', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: '', + Date: '', }, { id: 4, - Heading: 'Event 4', - Description: 'Description for Event 4', - ImageURL: 'https://picsum.photos/600', + Heading: 'Guest Lecture - NLP Proficiency ML4E', + Description: + "Join us as an industry expert delves into the fascinating world of NLP, the technology behind AI's ability to understand, interpret, and generate human language. From chatbots and virtual assistants to machine translation and sentiment analysis, discover how NLP is revolutionizing industries and shaping the future of communication, this session is a must-attend for anyone eager to explore the cutting-edge of artificial intelligence.", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: 'PPA', + Date: '', }, { id: 5, - Heading: 'Event 5', - Description: 'Description for Event 5', - ImageURL: 'https://picsum.photos/800', + Heading: 'Guest Lecture - ANALYTICS & CONSULTING', + Description: + "Get ready for some serious innovation at Little Science Yard (LSY), brought to you by AASRA! Students across Rourkela will gather to show off their coolest science projects, packed with creativity and brainpower. With a panel of judges on hand, only the most mind-blowing ideas will make it to the top and score those winning spots. Think you've got what it takes to impress?", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: '', + Date: '', }, { id: 6, - Heading: 'Event 6', - Description: 'Description for Event 6', - ImageURL: 'https://picsum.photos/900', - }, - { - id: 7, - Heading: 'Event 7', - Description: 'Description for Event 7', - ImageURL: 'https://picsum.photos/800', - }, - { - id: 8, - Heading: 'Event 8', - Description: 'Description for Event 8', - ImageURL: 'https://picsum.photos/600', - }, - { - id: 9, - Heading: 'Event 9', - Description: 'Description for Event 9', - ImageURL: 'https://picsum.photos/800', - }, - { - id: 10, - Heading: 'Event 10', - Description: 'Description for Event 10', - ImageURL: 'https://picsum.photos/900', + Heading: 'Guest Lecture - APS', + Description: + 'Join us for an inspiring and insightful session as we host a guest lecture by a prominent personality in the Tech Domain.Attendees will gain valuable perspectives on the evolution of tech and the skills required to thrive in this fast-changing landscape of technology and innovation.', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + Location: 'BBA', + Date: 'DAY 3', }, ]; diff --git a/src/config/content/EventsPage/MainEvents/Data.js b/src/config/content/EventsPage/MainEvents/Data.js index 1ffba24d..0a9697f5 100644 --- a/src/config/content/EventsPage/MainEvents/Data.js +++ b/src/config/content/EventsPage/MainEvents/Data.js @@ -1,52 +1,299 @@ -export const previewItems = [ +export const ME_previewItems = [ { id: 1, - ImageURL: 'https://picsum.photos/500', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //TBA PreviewDescription: - 'Get ready for Death Race, a two-day robotics competition where participants drive their robots through a track filled with obstacles and challenges. The fastest robot to navigate the course and score the most points wins. Brace yourself for an intense and thrilling showdown!', + '"Can you decode the future of business?" Join us for PSI PHI, our annual Business Hackathon, where mathematics meets strategy!...', }, { id: 2, - ImageURL: 'https://picsum.photos/600', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179005/inno-2024/Event%20Posters/DesignTab/q2cmztmsuzffzzhw1oqo.png', PreviewDescription: - 'Aeroprix, the flagship aeronautic event of Innovision 2024, brings together the sharpest minds in RC aviation. Prepare to be amazed as teams from across the country showcase their engineering prowess, flying state-of-the-art RC aircrafts in a high-stakes competition that tests creativity and precision.', + 'If it could be said in words there would be no reason to paint. NEO Palette is your chance to let your imagination speak...', }, { id: 3, - ImageURL: 'https://picsum.photos/400', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179007/inno-2024/Event%20Posters/omc/punchline%20panchayat/dwp4xyq08fcemqn9nxtj.png', PreviewDescription: - 'Unleash your moves in The Hustlemania 3.0.This thrilling freestyle dance event features Solo and Duo categories, each with Prelims and Final rounds where participants bring their best in just 60 seconds. The intensity peaks in the final round with a head-to-head face-off on random music tracks.', + '"Laughter is timeless, and the stage is set!" Get ready for Punchline Panchayat...', }, { id: 4, - ImageURL: 'https://picsum.photos/600', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //TBA PreviewDescription: - 'Embark on an immersive journey with Game Showcase, a virtual reality game and campus tour designed to transport you into a stunning digital landscape where exploration meets adventure. Explore the enormous campus of NIT Rourkela virtually through Oculus Virtual Reality headsets and experience your surroundings like never before.', + 'This event invites aspiring engineers and innovators to design, build, and test their very own mini chassis from the ground up...', }, { id: 5, - ImageURL: 'https://picsum.photos/500', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179013/inno-2024/Event%20Posters/STEELLUN%20-%20The%20Material%20Advantage%20Chapter%2C%20NITR/midccr2zknd4zbezvj6j.png', PreviewDescription: - 'Embark on a thrilling adventure through a maze built inside a tent! Along the way, solve questions at checkpoints to progress. Your goal? Find and conquer as many checkpoints as possible before time runs out. The participants with the most checkpoints and correct answers will claim victory. Test your problem-solving, strategy, and navigation in this exciting race against time!', - // other props for Preview + 'Join us for an engaging two-round event that tests your knowledge and practical skills!...', }, { id: 6, - ImageURL: 'https://picsum.photos/600', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179006/inno-2024/Event%20Posters/E-Cell%20-%20IPL%20Auction/rjt0ynbdwdap7hj3unqt.png', PreviewDescription: - 'The Ultimate Treasure Hunt is a thrill ing adventure where logic, strategy, and math skills are your keys to success. Teams will embark on a campus-wide hunt, so ving puzzles and cracking codes that lead to hidden treasures. Each step tests problem-solving, creativity, and teamwork. The clues will challenge your mathematical limits while keeping the excitement high.', + '"It\'s not just about cheering from the stands; it\'s about building the winning team!" E-Cell presents the IPL Auction...', }, { id: 7, - ImageURL: 'https://picsum.photos/400', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179007/inno-2024/Event%20Posters/Bears%20and%20Bulls/gdmjrwrzmbnmvgpzzpqf.png', PreviewDescription: - 'The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interact ive game involving a logrithmic problems and brainstorming quizzes that will enthral the participants in an adrenaline-filled atmosphere, testing their cognitive as well as coding skills. Presenting a cosmos of challenging problems at different levels, th is competition will be both exciting and unforgettable. Dont miss out!', + 'The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interact ive game involving a logrithmic problems and brainstorming quizzes...', }, { id: 8, - ImageURL: 'https://picsum.photos/500', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179011/inno-2024/Event%20Posters/The%20Bioscience%20Society%20-%20Brainy%20Escape%203.0/ddcl3drtik9setdlkxlf.png', + PreviewDescription: + '"Every clue is a step closer to the truth!" This interactive murder mystery invites you to solve a thrilling case of an unsolved murder...', + }, + { + id: 9, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //tba + PreviewDescription: '', + }, + { + id: 10, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //tba + PreviewDescription: + 'Get ready for the ultimate challenge with OpenChase: a Hybrid Treasure Hunt, brought to you by OpenCode!...', + }, + { + id: 11, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //tba + PreviewDescription: + 'Gear up to race against time! SAE NITR presents to you the “Virtual Racing Simulator Competition”, a super enthralling event...', + }, + { + id: 12, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //tba + PreviewDescription: + 'Put your chemistry knowledge to the ultimate test with Molecule Mania, a thrilling mix of crossword puzzles and rapid-fire quizzes!...', + }, + { + id: 13, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179010/inno-2024/Event%20Posters/Sci%20Savior-Inspire%20Club/ofq0fs5l9vtzdbfu2p33.png', + PreviewDescription: + 'In this exciting team-based event, teams of 4 will tackle three thrilling challenges—Pictionary, Puzzle Pursuit, and Science Riddles—to rescue their imaginary friend...', + }, + { + id: 14, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179016/inno-2024/Event%20Posters/Webclone%20mania_Webwiz/yobeoxuxwbxm1mwvdtes.png', + PreviewDescription: + 'Webwiz, the web development club of NIT Rourkela, brings to you WebClone Mania, an excellent opportunity to compete and exhibit your developing skills...', + }, + { + id: 15, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', + PreviewDescription: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179003/inno-2024/Event%20Posters/BrainBoxed%202.0%20%28AnC%29/evl3gsfmephbdm18zqta.png', + }, + { + id: 16, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179015/inno-2024/Event%20Posters/Short%20Circuit/ra3gzjbnsqgv32hn1nva.png', + PreviewDescription: + 'This exciting event challenges participants to showcase their creativity and technical skills through three engaging rounds. Kick things off with a Preliminary Online Test to assess your hardware knowledge...', + }, + { + id: 17, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729178999/inno-2024/Event%20Posters/ASME/xqnzvvsjy5dtxftyvvbn.png', + PreviewDescription: + 'Gear up for TURBOGEN-X with the ASME NIT Rourkela Student Section! Your mission: build a windmill using paper, cardboard, or acrylic sheets, and connect it to a dynamo...', + }, + { + id: 18, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //TBA + PreviewDescription: + 'HoloCampus is a groundbreaking initiative by the GTA at NIT Rourkela, debuting at Innovision 2024. As India’s first immersive holographic experience, it blends live video feeds with futuristic virtual enhancements, allowing attendees to explore the campus like never before...', + }, + { + id: 19, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //aiche TBA + PreviewDescription: + 'Simulating Solutions 2.0 is an exhilarating competition hosted by the AIChe NIT Rourkela Student Chapter, the vibrant community for chemical engineers and enthusiasts...', + }, + { + id: 20, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179011/inno-2024/Event%20Posters/Tiburon%20-%20Shark%20Hunt/jkkha9t3e91hhbdwgetu.png', + PreviewDescription: + '"In the depths of knowledge, we find the treasure of wisdom." Join us for Shark Hunt, a thrilling quiz based on Autonomous Underwater Vehicle (AUV) building...', + }, + { + id: 21, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179009/inno-2024/Event%20Posters/Jnanagni%20-%20Inquizzitive/bb8thtrztcbxikvjjgjo.png', + PreviewDescription: + '"Ignite your knowledge and fuel your passion for learning!" Join INQUIZZITIVE for JNANAGNI, a dynamic business and technology-themed quiz contest...', + }, + { + id: 22, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729178999/inno-2024/Event%20Posters/jv2umrted9dx0jcgfrvb.png', + PreviewDescription: + 'Step into the Era of Estates with the Finance Club for an epic journey through history! Travel from the late 19th century all the way to 2024, as major global events shake up commodities and sectors in ways you’ve never imagined...', + }, + { + id: 23, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //TBA + PreviewDescription: + '"The ocean stirs the heart, inspires the imagination, and brings eternal joy to the soul." Dive into the exciting world of robotics with Fish-Eye, hosted by Team TIBURON!...', + }, + { + id: 24, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179000/inno-2024/Event%20Posters/tl0i8idt3sozlan2s7cy.png', + PreviewDescription: + 'Get ready to dive into a thrilling competition where strategy, creativity, and quick thinking reign supreme. In this unique event, each team will receive a set amount of ‘credits’ to start their bidding journey...', + }, + { + id: 25, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //cyborg TBA + PreviewDescription: + '"Only the strongest can dominate the ring." Prepared for the Robo-Sumo War , where robots face off in a thrilling wrestling match on an enclosed circular platform...', + }, + { + id: 26, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179016/inno-2024/Event%20Posters/Shake%20It%20Off-%20CEST/axcxc1bg60cyvv6cdunn.jpg', + PreviewDescription: + 'Shake It Off! A competition organized by the CEST Club of NIT Rourkela to test your technical and structural knowledge. Participants will be tasked with building a strong structure capable of withstanding loading and tremor tests...', + }, + { + id: 27, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //Hustlemania TBA + PreviewDescription: + '“There are shortcuts to happiness, and dancing is one of them.” Unleash your moves in The Hustlemania 3.0.This thrilling freestyle dance event features Solo and Duo categories...', + }, + { + id: 28, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179009/inno-2024/Event%20Posters/Business%20Pictionary%20-%20Grapevine/dedx2sfes6oib1gv7keo.png', + PreviewDescription: + 'Get ready for "Business Pictionary" by the Grapevine Business Club! In this fun and interactive event, participants will take turns drawing business-related terms like "branding," "stock market," and "start-up"...', + }, + { + id: 29, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179013/inno-2024/Event%20Posters/UDAAN/d6xoa6vlebahnb7q86gv.png', PreviewDescription: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', + '"Get ready for an electrifying battle of innovation and skill!" In Hovermania, two teams will face off in an epic hovercraft showdown, where low-cost designs fuel intense competition...', + }, + { + id: 30, + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179011/inno-2024/Event%20Posters/FTS/xk2bx2rmqkqu5lmvzgpd.png', + PreviewDescription: '', + }, + { + id: 31, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 32, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 33, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 34, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 35, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 36, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 37, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 38, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 39, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 40, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 41, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 42, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 43, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 44, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 45, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 46, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 47, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 48, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 49, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', + }, + { + id: 50, + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + PreviewDescription: '', }, ]; @@ -55,210 +302,517 @@ export const ME_descriptionItems = [ id: 1, Heading: 'PSI-PHI', Description: - 'Get ready for Death Race, a two-day robotics competition where participants drive their robots through a track filled with obstacles and challenges. The fastest robot to navigate the course and score the most points wins. Brace yourself for an intense and thrilling showdown!', - ImageURL: 'https://picsum.photos/800', + '"Can you decode the future of business?" Join us for PSI PHI, our annual Business Hackathon, where mathematics meets strategy! With over 300 participants expected, this event challenges you to tackle core business and economic problems through a series of thought-provoking questions and case studies. Are you ready to sharpen your problem-solving skills and compete for innovative solutions? Don’t miss out!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: 'LA-104', + Date: 'Day 1', + Prizes: '₹5000', }, { id: 2, Heading: 'NEO PALETTE', Description: - 'Aeroprix, the flagship aeronautic event of Innovision 2024, brings together the sharpest minds in RC aviation. Prepare to be amazed as teams from across the country showcase their engineering prowess, flying state-of-the-art RC aircrafts in a high-stakes competition that tests creativity and precision.', - ImageURL: 'https://picsum.photos/900', + 'If it could be said in words there would be no reason to paint. NEO Palette is your chance to let your imagination speak. As the premier online digital art competition, it’s a stage where creators can showcase their talents and push artistic boundaries. Whether new to digital art or a seasoned professional, NEO Palette offers the perfect space to express your vision and compete for exciting prizes. Dive into the world of digital creativity, where your imagination has no boundaries, and let your creations shine!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179005/inno-2024/Event%20Posters/DesignTab/q2cmztmsuzffzzhw1oqo.png', + Location: 'Online', + Date: '', + Prizes: '₹2000', }, { id: 3, Heading: 'PUNCHLINE PANCHAYAT', Description: - 'Unleash your moves in The Hustlemania 3.0.This thrilling freestyle dance event features Solo and Duo categories, each with Prelims and Final rounds where participants bring their best in just 60 seconds. The intensity peaks in the final round with a head-to-head face-off on random music tracks.', - ImageURL: 'https://picsum.photos/800', + '"Laughter is timeless, and the stage is set!" Get ready for Punchline Panchayat, where our talented Open Mic Club members will take the stage for an entertaining showcase. In just one and a half hours, expect a variety of engaging acts from our very own comedians. With a footfall of 500 last year, this event promises to deliver laughter and enjoyment for everyone. Don’t miss out on this delightful evening!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179007/inno-2024/Event%20Posters/omc/punchline%20panchayat/dwp4xyq08fcemqn9nxtj.png', + Location: 'BBA', + Date: 'Day 2', + Prizes: '', }, { id: 4, Heading: 'Mini Chassis Making Competition', Description: - 'Embark on an immersive journey with Game Showcase, a virtual reality game and campus tour designed to transport you into a stunning digital landscape where exploration meets adventure. Explore the enormous campus of NIT Rourkela virtually through Oculus Virtual Reality headsets and experience your surroundings like never before.', - ImageURL: 'https://picsum.photos/600', + "This event invites aspiring engineers and innovators to design, build, and test their very own mini chassis from the ground up. Whether you're passionate about automotive design or mechanical engineering, this challenge offers the perfect platform to showcase your creativity, technical skills, and problem-solving abilities.Gear up for the ultimate hands-on engineering experience with the Mini Chassis Making Competition!", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: 'LA1-122', + Date: '', + Prizes: '₹3000', }, { id: 5, Heading: 'MATERIAXPLORE', Description: - 'Embark on a thrilling adventure through a maze built inside a tent! Along the way, solve questions at checkpoints to progress. Your goal? Find and conquer as many checkpoints as possible before time runs out. The participants with the most checkpoints and correct answers will claim victory. Test your problem-solving, strategy, and navigation in this exciting race against time!', - ImageURL: 'https://picsum.photos/800', + 'Join us for an engaging two-round event that tests your knowledge and practical skills! In the first round, solve a themed crossword puzzle, and in the second round, identify items based on their properties. This exciting competition combines critical thinking and hands-on activities, making it a must-attend for anyone eager to showcase their talents!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179013/inno-2024/Event%20Posters/STEELLUN%20-%20The%20Material%20Advantage%20Chapter%2C%20NITR/midccr2zknd4zbezvj6j.png', + Location: '', + Date: '', + Prizes: '₹5000', }, { id: 6, Heading: 'IPL AUCTION', Description: - 'The Ultimate Treasure Hunt is a thrilling adventure where logic, strategy, and math skills are your keys to success. Teams will embark on a campus-wide hunt, soljving puzzles and cracking codes that lead to hidden treasures. Each step tests problem-solving, creativity, and teamwork. The clues will challenge your mathematical limits while keeping the excitement high.', - ImageURL: 'https://picsum.photos/900', + '"It\'s not just about cheering from the stands; it\'s about building the winning team!" E-Cell presents the IPL Auction, a two-round competition. In Round 1, teams face off in a quiz. The top teams advance to Round 2, where they use virtual money to bid for IPL players in a dynamic auction.Be ready to experience the thrill of building your dream team!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179006/inno-2024/Event%20Posters/E-Cell%20-%20IPL%20Auction/rjt0ynbdwdap7hj3unqt.png', + Location: 'PPA', + Date: 'Day 3', + Prizes: '₹8000', }, { id: 7, Heading: 'BEYOND THE BASIC', Description: 'The Algorithm and Programming Society of NITR is back with its flagship event of INNOVISION, Meteor Madness, an interact ive game involving a logrithmic problems and brainstorming quizzes that will enthral the participants in an adrenaline-filled atmosphere, testing their cognitive as well as coding skills. Presenting a cosmos of challenging problems at different levels, th is competition will be both exciting and unforgettable. Dont miss out!', - ImageURL: 'https://picsum.photos/800', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179007/inno-2024/Event%20Posters/Bears%20and%20Bulls/gdmjrwrzmbnmvgpzzpqf.png', + Location: '', + Date: '', + Prizes: '₹3000', }, { id: 8, Heading: 'BRAINLY ESCAPE', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + '"Every clue is a step closer to the truth!" This interactive murder mystery invites you to solve a thrilling case of an unsolved murder. In two rounds, teams will tackle engaging puzzles leading to locations around the LA lawns before uncovering the killer\'s identity and the biological cause of death, guided by clues rooted in bioscience.Let’s get the killer punished.', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179011/inno-2024/Event%20Posters/The%20Bioscience%20Society%20-%20Brainy%20Escape%203.0/ddcl3drtik9setdlkxlf.png', + Location: 'LA1-114,104', + Date: 'Day 1', + Prizes: '₹5000', }, { - id: 8, + id: 9, Heading: 'IMAGINE AI', - Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + Description: '', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //TBA + Location: '', + Date: '', + Prizes: '₹3000', }, { - id: 8, + id: 10, Heading: 'OPENCHASE', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'Get ready for the ultimate challenge with OpenChase: a Hybrid Treasure Hunt, brought to you by OpenCode! This virtual Capture the Flag event will have you hunting down hidden hints and flags buried deep within apps, media, and websites. Do you have the skills to crack the clues and come out on top?', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '₹3000', }, { - id: 8, + id: 11, Heading: 'VIRTUAL RACING SIMULATOR COMPETITION', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'Gear up to race against time! SAE NITR presents to you the “Virtual Racing Simulator Competition”, a super enthralling event where participants will compete against each other in a virtual environment using a racing simulation software. If you enjoy playing Need For Speed, Burnout Paradise, Forza Horizon 5 etc, this competition is for you! Join us and get a chance to show off your driving skills or simply spectate and enjoy the thrilling competition as it unfolds!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '₹3000', }, { - id: 8, + id: 12, Heading: 'MOLECULAR MANIA', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + "Put your chemistry knowledge to the ultimate test with Molecule Mania, a thrilling mix of crossword puzzles and rapid-fire quizzes! Dive into the world of atoms, molecules, and reactions as you solve intricate crosswords that challenge your understanding of chemistry. Then, switch gears to compete in a high-energy quiz session where only the sharpest minds will prevail. Whether you're a periodic table pro or a chemical reaction enthusiast, Molecule Mania promises a brain-teasing adventure that's as educational as it is exciting!", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //TBA + Location: '', + Date: '', + Prizes: '₹3000', }, { - id: 8, + id: 13, Heading: 'SCI-SAVIOUR', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'In this exciting team-based event, teams of 4 will tackle three thrilling challenges—Pictionary, Puzzle Pursuit, and Science Riddles—to rescue their imaginary friend. Teams will first identify their friends trapped scenario through drawings, then hunt for hidden weapons using coded clues, and finally solve science riddles to creatively apply the weapons and complete the rescue. Points are awarded for speed, accuracy, and creativity. Let the adventure begin!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179010/inno-2024/Event%20Posters/Sci%20Savior-Inspire%20Club/ofq0fs5l9vtzdbfu2p33.png', + Location: '', + Date: '', + Prizes: '₹3000', }, { - id: 8, + id: 14, Heading: 'WEBCLONE MANIA', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'Webwiz, the web development club of NIT Rourkela, brings to you WebClone Mania, an excellent opportunity to compete and exhibit your developing skills. Participants will be tasked with cloning a website or a specific component from scratch within the time limit of 2 hours. Showcase your coding prowess, design skills and attention to detail and stand a chance to win this exciting competition!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179016/inno-2024/Event%20Posters/Webclone%20mania_Webwiz/yobeoxuxwbxm1mwvdtes.png', + Location: '', + Date: '', + Prizes: '₹5000', }, { - id: 8, + id: 15, Heading: 'BRAINBOXED 2.0', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + '"Innovation knows no bounds!" Join us for Brainboxed 2.0, a thrilling case study competition centered around the theme Technoverse: Navigating the Tech Cosmos and Future Landscape. Teams of up to three will tackle real-world tech challenges, showcasing their creativity and problem-solving prowess. Esteemed judges will evaluate each team’s approach and vision, making this an exceptional opportunity to consider the ethical and sustainable impacts of future innovations.', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179003/inno-2024/Event%20Posters/BrainBoxed%202.0%20%28AnC%29/evl3gsfmephbdm18zqta.png', + Location: '', + Date: 'Day 2 & 3', + Prizes: '₹3000', }, { - id: 8, + id: 16, Heading: 'ELECTROQUEST', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'This exciting event challenges participants to showcase their creativity and technical skills through three engaging rounds. Kick things off with a Preliminary Online Test to assess your hardware knowledge. Then, tackle a problem statement using TINKERCAD in the Simulation Round, where you’ll design and simulate your solution. Finally, bring your ideas to life in the Hardware Implementation Round, where you’ll work with actual hardware kits to create a working prototype. Join us for a thrilling experience of innovation and hands-on learning!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179015/inno-2024/Event%20Posters/Short%20Circuit/ra3gzjbnsqgv32hn1nva.png', + Location: '', + Date: '', + Prizes: '₹5000', }, { - id: 8, + id: 17, Heading: 'TURBOGEN-X', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'Gear up for TURBOGEN-X with the ASME NIT Rourkela Student Section! Your mission: build a windmill using paper, cardboard, or acrylic sheets, and connect it to a dynamo. The challenge? Create the best propeller design that, when powered by wind, generates the highest voltage. Are you ready to engineer the most efficient windmill and take the win?', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729178999/inno-2024/Event%20Posters/ASME/xqnzvvsjy5dtxftyvvbn.png', + Location: '', + Date: '', + Prizes: '₹5000', }, { - id: 8, - Heading: 'HOLOGRAMS', + id: 18, + Heading: 'HOLOCAMPUS', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'HoloCampus is a groundbreaking initiative by the GTA at NIT Rourkela, debuting at Innovision 2024. As India’s first immersive holographic experience, it blends live video feeds with futuristic virtual enhancements, allowing attendees to explore the campus like never before.Focused on delivering a seamless, immersive experience that ensures full engagement with holographic displays. Interact with holograms, experience live streams enhanced with special effects, and be part of a pioneering fusion of the physical and virtual worlds for a truly unforgettable event!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //TBA + Location: 'Open Place in BBA', + Date: 'Day 1,2 & 3', + Prizes: '', }, { - id: 8, + id: 19, Heading: 'Simulating Solution', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'Simulating Solutions 2.0 is an exhilarating competition hosted by the AIChe NIT Rourkela Student Chapter, the vibrant community for chemical engineers and enthusiasts. Participants will face a series of engaging(crosswords/quiz/jeopardy quiz), and challenging riddles that will lead your team to the grand finale. Chemical engineer or not,this competition is for everyone. So, brush up your chemistry skills and prepare to think outside the box—join us for a thrilling experience!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //aiche TBA + Location: '', + Date: '', + Prizes: '₹5000', }, { - id: 8, + id: 20, Heading: 'Shark Hunt', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + '"In the depths of knowledge, we find the treasure of wisdom." Join us for Shark Hunt, a thrilling quiz based on Autonomous Underwater Vehicle (AUV) building. Test your skills and knowledge against fellow enthusiasts in this engaging event. Dive deep into the world of robotics and see who emerges victorious!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179011/inno-2024/Event%20Posters/Tiburon%20-%20Shark%20Hunt/jkkha9t3e91hhbdwgetu.png', + Location: '', + Date: 'Day 2', + Prizes: '₹2000', }, { - id: 8, - Heading: 'Janagnni', + id: 21, + Heading: 'Jnanagni', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + '"Ignite your knowledge and fuel your passion for learning!" Join INQUIZZITIVE for JNANAGNI, a dynamic business and technology-themed quiz contest. This exciting event consists of a preliminary written round followed by a final oral round, taking place over three hours from 3 PM to 6 PM. Engage in challenging questions that test your knowledge and creativity!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179009/inno-2024/Event%20Posters/Jnanagni%20-%20Inquizzitive/bb8thtrztcbxikvjjgjo.png', + Location: '', + Date: 'Day 2', + Prizes: '₹3000', }, { - id: 8, + id: 22, Heading: 'Era of Estates', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'Step into the Era of Estates with the Finance Club for an epic journey through history! Travel from the late 19th century all the way to 2024, as major global events shake up commodities and sectors in ways you’ve never imagined. Each round brings new challenges with prices rising and falling, and it’s up to you to adapt and make the smartest moves. With every twist and turn, the competition heats up—will you have what it takes to outwit the market and claim victory?', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729178999/inno-2024/Event%20Posters/jv2umrted9dx0jcgfrvb.png', + Location: 'PPA', + Date: '', + Prizes: '₹3000', }, { - id: 8, - Heading: 'Hackathon', + id: 23, + Heading: 'Fish Eye', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + '"The ocean stirs the heart, inspires the imagination, and brings eternal joy to the soul." Dive into the exciting world of robotics with Fish-Eye, hosted by Team TIBURON! Join us to explore the stages of building an Autonomous Underwater Vehicle (AUV), from initial design to final operation. Gain hands-on experience and valuable insights into the technology that powers these remarkable machines.', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //TBA + Location: '', + Date: 'Day 2', + Prizes: '', }, { - id: 8, + id: 24, Heading: 'Intelligent Trader 10.0', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'Get ready to dive into a thrilling competition where strategy, creativity, and quick thinking reign supreme. In this unique event, each team will receive a set amount of ‘credits’ to start their bidding journey. Assigned specific numbers, teams will explore a carefully curated reference list filled with an exciting array of weapons, ammunition, and beloved characters from popular fantasies and dramas. Your mission? To craft the ultimate combination of items that will earn you the highest points possible. Each item holds its own value, and it’s up to you to navigate the bidding process with cunning and strategy to outsmart your opponents. Prepare to engage in a lively and dynamic atmosphere as you bid your way to victory. May the most strategic team emerge triumphant in this exhilarating fantasy showdown!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179000/inno-2024/Event%20Posters/tl0i8idt3sozlan2s7cy.png', + Location: '', + Date: '', + Prizes: '₹2000', }, { - id: 8, + id: 25, Heading: 'Robo Sumo War', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + '"Only the strongest can dominate the ring." Prepared for the Robo-Sumo War , where robots face off in a thrilling wrestling match on an enclosed circular platform. With increased fight space and strategic moves, competitors will push their robots to the limit in this high-energy event!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //cyborg TBA + Location: 'Hall in LA (Infront of Elevator)', + Date: 'Day 2', + Prizes: '₹8000', }, { - id: 8, + id: 26, Heading: 'Shake It Off', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'Shake It Off! A competition organized by the CEST Club of NIT Rourkela to test your technical and structural knowledge. Participants will be tasked with building a strong structure capable of withstanding loading and tremor tests using the materials provided. The model lasting the longest in a shaking table test will be declared as the winning model. Compete in teams of 2-4 and show off your civil engineering skills!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179016/inno-2024/Event%20Posters/Shake%20It%20Off-%20CEST/axcxc1bg60cyvv6cdunn.jpg', + Location: 'SAC (Infront of SAC Stairs)', + Date: 'Day 2 & 3', + Prizes: '₹5000', }, { - id: 8, - Heading: 'Roadies Food Saga 2.0', + id: 27, + Heading: 'Hustlemania 3.0', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + "“There are shortcuts to happiness, and dancing is one of them.” Unleash your moves in The Hustlemania 3.0.This thrilling freestyle dance event features Solo and Duo categories, each with Prelims and Final rounds where participants bring their best in just 60 seconds. The intensity peaks in the final round with a head-to-head face-off on random music tracks. Whether you're dancing alone or with a partner, step up and show off your freestyle magic—because there’s no greater feeling than dancing to the rhythm and letting the world disappear!", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', //TBA + Location: '', + Date: '', + Prizes: '₹10000', }, { - id: 8, - Heading: 'Little Science Yard', + id: 28, + Heading: 'Business Pictionary', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + 'Get ready for "Business Pictionary" by the Grapevine Business Club! In this fun and interactive event, participants will take turns drawing business-related terms like "branding," "stock market," and "start-up" on whiteboards or chart paper, while their teammates try to guess the correct terms. The faster and more accurate the guesses, the higher your team\'s chances of winning! With creativity, communication, and teamwork at the heart of the game, it\'s a race against time to see which team will dominate the leaderboard and claim victory. Let the business-themed sketching begin!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179009/inno-2024/Event%20Posters/Business%20Pictionary%20-%20Grapevine/dedx2sfes6oib1gv7keo.png', + Location: '', + Date: '', + Prizes: '₹2000', }, { - id: 8, - Heading: 'Business Pictionary', + id: 29, + Heading: 'Hovermania', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + '"Get ready for an electrifying battle of innovation and skill!" In Hovermania, two teams will face off in an epic hovercraft showdown, where low-cost designs fuel intense competition. This event invites participants to unleash their creativity and engineering prowess while battling for victory. Join us for an action-packed day that celebrates teamwork and ingenuity in a thrilling atmosphere!', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179013/inno-2024/Event%20Posters/UDAAN/d6xoa6vlebahnb7q86gv.png', + Location: '', + Date: '', + Prizes: '₹8000', + }, + { + id: 30, + Heading: 'Roadies Food Saga: 2.0', + Description: '', + ImageURL: + 'https://res.cloudinary.com/dwfon2ikz/image/upload/v1729179011/inno-2024/Event%20Posters/FTS/xk2bx2rmqkqu5lmvzgpd.png', + Location: '', + Date: '', + Prizes: '₹3000', + }, + { + id: 31, + Heading: 'Traders talk', + Description: + 'Bears and Bulls, the official trading club of NITR, presents to you Traders Talk, an engaging lecture featuring renowned experts in the field of trading and finance who will share their insights on the dynamic world of the financial market. Grab this unique opportunity to gain valuable knowledge from seasoned professionals with years of experience, and also interact with them to enhance your understanding of the complexities and opportunities within the financial landscape.', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', }, { - id: 8, - Heading: 'Hovermania', + id: 32, + Heading: 'Idea Unlocked', + Description: + 'Get ready for Idea Unlocked by MATRIX CLUB! Test your brand knowledge with a fun logo quiz, then unleash your creativity by pitching your most innovative business ideas. Impress the judges and stand a chance to win with your originality, feasibility, and presentation! Do you have what it takes?', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 33, + Heading: 'Decade Dash', + Description: + 'Get ready to time-travel with Decade Dash by the Finance Club! Buckle up as you jump through iconic moments in history, from major world wars to economic booms, where global events will shake up real estate and country prices. Everyone starts on equal footing, but only the sharpest strategists will ride the waves of change and dominate the leaderboard. Think you can handle the heat of history?', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: 'PPA', + Date: '', + Prizes: '', + }, + { + id: 34, + Heading: 'Fun Fusion', + Description: + '"Prepare for an exhilarating blend of fun and intellect!" Fun Fusion features three exciting rounds filled with tasks and quizzes. Participants will kick off with timed challenges, followed by engaging quiz questions from biology, physics, and logic for bonus points. The second round includes a thrilling game, culminating in a final, challenging quiz. Don’t miss your chance to shine—join us to compete for the title of champion!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: 'LA1-117', + Date: 'DAY 2', + Prizes: '', + }, + { + id: 35, + Heading: 'Sell Me This Pen', + Description: + '"In sales, the most powerful tool is your passion!" Join us for “Sell me this pen,” a thrilling competition where teams will sell or advertise a product to a panel of judges. Participants will perform acts, skits, or direct sales pitches, showcasing their creativity and salesmanship. Only the best sales team will take home the title. Prepare to unleash your inner salesperson with the Finance Club!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: 'DAY 1', + Prizes: '', + }, + { + id: 36, + Heading: 'No Nerds November', + Description: + '"Get ready for a night of laughter without the nerdy stuff!" We\'re excited to present No Nerds November, featuring a renowned stand-up comedian who will deliver a hilarious performance and engage the crowd with interactive humor. In just one and a half hours, expect an entertaining experience that ensures everyone leaves with a smile. This is an event you won’t want to miss!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: 'BBA', + Date: 'DAY 3', + Prizes: '', + }, + { + id: 37, + Heading: 'Laughter LAFDA', + Description: + '"Laughter is the best medicine; be ready to see some hidden comedy gems!" OPEN MIC welcomes to LAUGHTER LAFDA, where undiscovered comedic talents shine in a friendly competition! In just 2 hours, participants will take the stage to showcase their unique styles and humor. Join us as we celebrate the art of comedy and enjoy an evening filled with laughter.', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: 'DAY 1', + Prizes: '', + }, + { + id: 38, + Heading: 'Darth-a-lon', + Description: + 'Join us for Darth-a-lon! A dart-throwing machine-making competition brought to you by ASME NIT Rourkela where participants will be able to showcase their creativity and precision engineering skills. Participants will design and construct their very own dart-throwing machines built to hit a specific target using a variety of materials provided to them within the time limit of 3 hours. Try your best shot and dart your way to victory!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 39, + Heading: 'Esacpe Room', + Description: + "Step into a world of intrigue and mystery with a 3D Puzzle Escape Room Challenge, hosted by PrintStation, the official 3D printing club of NITR. Participants will be locked in a specially designed escape room filled with intricate 3D-printed clues. These clues are your only way out, but solving them won't be easy. With keen observation, creative thinking, teamwork, and an eye on the ticking clock piece together the clues, unlock hidden secrets, and find your way to freedom. Get ready for an immersive experience that combines the thrill of an escape room with the innovation of 3D printing. Are you up for the challenge?!", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 40, + Heading: "Potter's Touch", + Description: + "Join us for Potter's Touch, a clay pottery workshop hosted by InCerS NITR, the ceramic society of our college. Learn the art of pottery from a professional clay potter and get a chances to make one on your own! Roll up your sleeves and prepare to get your hands dirty on the pottery wheel all while enjoying a calm, relaxing and creative atmosphere.", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 41, + Heading: 'HIP HOP Frenzy 1.0', + Description: + "Hip-Hop Frenzy 1.O, hosted by Synergy, is an inclusive dance event designed to teach the foundations of hip-hop and choreography to participants of all skill levels. Whether you're a beginner or experienced dancer, this energetic session will guide you through the basics while encouraging creativity and movement. Join us for a fun and dynamic dance experience!", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 42, + Heading: 'Concept Craze', + Description: + "Concept-Craze, organized by ASME NIT Rourkela Student Section, is a dynamic event where participants pitch innovative solutions to real-world problems within a limited time frame. This challenge tests creativity, critical thinking, and the ability to present ideas concisely. It's a great platform for aspiring engineers and problem-solvers to showcase their skills and bring forward impactful solutions.", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 43, + Heading: 'Shilp Setu', + Description: + 'Shilp Setu, organized by the C.E.S.T Club, is a thrilling bridge-making competition where teams design and construct arc bridges using bricks, sand, and water. Participants will put their engineering skills and creativity to the test, aiming to build strong and visually appealing bridges. Judging will focus on structural integrity, innovative design, and aesthetics, challenging teams to create resilient structures with limited materials.', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 44, + Heading: 'Squid Game', + Description: + 'Squid Game, hosted by the Grapevine Business Club, is an exciting event featuring two fun-filled, team-building challenges. In Tug of War – Team Building Edition, teams will compete in a traditional tug of war, but with a twist: solving puzzles between rounds to earn time bonuses. In Red Light, Green Light – Campus Race, participants race across campus, stopping when “Red Light” is called, testing their reflexes and strategy.', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: 'NCC Ground', + Date: '', + Prizes: '', + }, + { + id: 45, + Heading: 'Drift-a-thon', + Description: + 'Get ready to roll—super slowly—at Drift-A-Thon, hosted by LEO! This isn’t your typical race; it’s all about balance and control. Compete against 15 others as you try to cycle 50 meters at the slowest speed possible—without putting your feet down! The twist? It’s all for a good cause, with minimal entry fees going toward fundraising. It’s fun, it’s challenging, and it’s all about showing off your epic balancing skills. Are you up for the slowest race of your life?', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: 'STS Ground', + Date: '', + Prizes: '', + }, + { + id: 46, + Heading: 'The Amazing Race', + Description: + 'Get ready for an exhilarating race across campus, where teams will face a series of exciting challenges. Compete against the clock and other teams as you solve puzzles, complete tasks, and collaborate to reach the final destination. It’s a fast-paced, team-based competition where everyone has a chance to shine. Rally your squad and race to victory—are you up for the challenge?', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 47, + Heading: 'Who Am I? (MOVIE EDITION)', + Description: + 'Lights, camera, guess! MATRIX CLUB brings you Who Am I? (Movie Edition)—the ultimate movie character guessing game. With a card stuck to your forehead, you’ll have to ask yes/no questions to determine which iconic movie character or celebrity you are. Can you guess it before time runs out? Ready, set, action!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 48, + Heading: 'Turbo Trivia Treasure Hunt', + Description: + 'Join us for an exhilarating event where teams race across campus, tackling a series of engaging challenges. Begin your adventure with a trivia question that leads you to your first clue, then work together to solve a riddle that uncovers your next location. Finally, compete in a showdown to earn the ultimate clue that will guide you to the hidden treasure. The first team to find it and return wins! This exciting blend of teamwork, creativity, and exploration will have you discovering the campus like never before!', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 49, + Heading: 'Perfume Making Demonstration', + Description: + 'Join us for the event “Perfume Making Demonstration” and learn the art of perfume-making from a professional perfume maker and customizer. Learn about the ingredients used while making perfumes and make one on your own! You can also buy perfumes customised according to your wish.', + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', + }, + { + id: 50, + Heading: 'Hands on Workshop', Description: - 'Join Stellar Night, a stargazing event by Astro NITR. Observe celestial objects like the Moon, Mars, Saturn, Jupiter, and its moons through powerful telescopes. Learn about astronomy and have a fun night under the stars!', - ImageURL: 'https://picsum.photos/600', + "The Genesys club's Hands-On Workshop invites a biotechnology or biomedical startup to showcase their innovative product and guide participants through its design and functionality. In this interactive session, students will gain in-depth insights into the development and working of cutting-edge technologies. For example, a startup like Upside Down Labs, which creates DIY Neuroscience Kits, could demonstrate how these tools enable projects in Brain-Computer Interfaces (BCI) and Human-Computer Interfaces (HCI), offering students a unique learning experience.", + ImageURL: 'https://socialcry.com/wp-content/uploads/2024/10/dummy-image-lorem-ipsum.png', // TBA + Location: '', + Date: '', + Prizes: '', }, ]; diff --git a/src/config/content/Statistics/CardData.js b/src/config/content/Statistics/CardData.js index d13ef546..07bb5a13 100644 --- a/src/config/content/Statistics/CardData.js +++ b/src/config/content/Statistics/CardData.js @@ -1,4 +1,4 @@ -export const Topics = ['Rank', 'Name of college', 'Number of students']; +export const Topics = ['Rank', 'Name of college']; export const Info = [ { Rank: '1', college: 'National Institute Of Technology', Students: '100' },