├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json └── mpc.png ├── src ├── App.css ├── App.js ├── Cards │ ├── AIDrone.jpeg │ ├── Bgmi.jpeg │ ├── BrainStorming.jpeg │ ├── CETunes.jpeg │ ├── CulturalNight.jpeg │ ├── Dance.jpeg │ ├── DroneExpo.jpeg │ ├── Efootball.jpeg │ ├── GAI.jpeg │ ├── IBee.jpeg │ ├── IETAN.jpeg │ ├── Ideathon.jpeg │ ├── Inauguration.jpeg │ ├── Logistics.jpeg │ ├── OC.jpeg │ ├── Orgami.jpeg │ ├── PBI.jpeg │ ├── Quiz.jpeg │ ├── SC.jpeg │ ├── Stockmarket.jpeg │ ├── WebDesigning.jpeg │ └── eventCard.jpeg ├── Components │ ├── CardSection.css │ ├── CardSection1.jsx │ ├── CardSection2.jsx │ ├── CardSection3.jsx │ ├── CardSection4.jsx │ ├── Footer.css │ ├── Footer.jsx │ ├── Header.css │ ├── Header.jsx │ ├── Loader.css │ ├── Loader.jsx │ ├── SubContent.css │ ├── SubContent.jsx │ ├── hyperlinks.js │ └── loader.txt ├── Images │ ├── CarShow.png │ ├── CarShowStock.png │ ├── CulturalEventStock.png │ ├── CulturalEvents.png │ ├── E1.png │ ├── E2.png │ ├── E3.png │ ├── E4.png │ ├── E5.png │ ├── FleaMarket.png │ ├── FleaMarketStock.png │ ├── Gaming.png │ ├── GamingStock.png │ ├── Loader │ │ ├── L1.png │ │ ├── L2.png │ │ ├── L3.png │ │ ├── L4.png │ │ ├── L5.png │ │ └── L6.png │ ├── WeaponExpo.png │ ├── WeaponExpoStock.png │ ├── dictationarySet.png │ ├── fullBG.png │ ├── instaIcon.png │ ├── linkedinIcon.png │ ├── logo.png │ └── text.png ├── index.css └── index.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | nexeracet.tech -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React + Tailwind.css 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/public/mpc.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Cards/AIDrone.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/AIDrone.jpeg -------------------------------------------------------------------------------- /src/Cards/Bgmi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/Bgmi.jpeg -------------------------------------------------------------------------------- /src/Cards/BrainStorming.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/BrainStorming.jpeg -------------------------------------------------------------------------------- /src/Cards/CETunes.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/CETunes.jpeg -------------------------------------------------------------------------------- /src/Cards/CulturalNight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/CulturalNight.jpeg -------------------------------------------------------------------------------- /src/Cards/Dance.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/Dance.jpeg -------------------------------------------------------------------------------- /src/Cards/DroneExpo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/DroneExpo.jpeg -------------------------------------------------------------------------------- /src/Cards/Efootball.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/Efootball.jpeg -------------------------------------------------------------------------------- /src/Cards/GAI.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/GAI.jpeg -------------------------------------------------------------------------------- /src/Cards/IBee.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/IBee.jpeg -------------------------------------------------------------------------------- /src/Cards/IETAN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/IETAN.jpeg -------------------------------------------------------------------------------- /src/Cards/Ideathon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/Ideathon.jpeg -------------------------------------------------------------------------------- /src/Cards/Inauguration.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/Inauguration.jpeg -------------------------------------------------------------------------------- /src/Cards/Logistics.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/Logistics.jpeg -------------------------------------------------------------------------------- /src/Cards/OC.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/OC.jpeg -------------------------------------------------------------------------------- /src/Cards/Orgami.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/Orgami.jpeg -------------------------------------------------------------------------------- /src/Cards/PBI.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/PBI.jpeg -------------------------------------------------------------------------------- /src/Cards/Quiz.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/Quiz.jpeg -------------------------------------------------------------------------------- /src/Cards/SC.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/SC.jpeg -------------------------------------------------------------------------------- /src/Cards/Stockmarket.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/Stockmarket.jpeg -------------------------------------------------------------------------------- /src/Cards/WebDesigning.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/WebDesigning.jpeg -------------------------------------------------------------------------------- /src/Cards/eventCard.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Cards/eventCard.jpeg -------------------------------------------------------------------------------- /src/Components/CardSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/CardSection.css -------------------------------------------------------------------------------- /src/Components/CardSection1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/CardSection1.jsx -------------------------------------------------------------------------------- /src/Components/CardSection2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/CardSection2.jsx -------------------------------------------------------------------------------- /src/Components/CardSection3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/CardSection3.jsx -------------------------------------------------------------------------------- /src/Components/CardSection4.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/CardSection4.jsx -------------------------------------------------------------------------------- /src/Components/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/Footer.css -------------------------------------------------------------------------------- /src/Components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/Footer.jsx -------------------------------------------------------------------------------- /src/Components/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/Header.css -------------------------------------------------------------------------------- /src/Components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/Header.jsx -------------------------------------------------------------------------------- /src/Components/Loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/Loader.css -------------------------------------------------------------------------------- /src/Components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/Loader.jsx -------------------------------------------------------------------------------- /src/Components/SubContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/SubContent.css -------------------------------------------------------------------------------- /src/Components/SubContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/SubContent.jsx -------------------------------------------------------------------------------- /src/Components/hyperlinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/hyperlinks.js -------------------------------------------------------------------------------- /src/Components/loader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Components/loader.txt -------------------------------------------------------------------------------- /src/Images/CarShow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/CarShow.png -------------------------------------------------------------------------------- /src/Images/CarShowStock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/CarShowStock.png -------------------------------------------------------------------------------- /src/Images/CulturalEventStock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/CulturalEventStock.png -------------------------------------------------------------------------------- /src/Images/CulturalEvents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/CulturalEvents.png -------------------------------------------------------------------------------- /src/Images/E1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/E1.png -------------------------------------------------------------------------------- /src/Images/E2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/E2.png -------------------------------------------------------------------------------- /src/Images/E3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/E3.png -------------------------------------------------------------------------------- /src/Images/E4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/E4.png -------------------------------------------------------------------------------- /src/Images/E5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/E5.png -------------------------------------------------------------------------------- /src/Images/FleaMarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/FleaMarket.png -------------------------------------------------------------------------------- /src/Images/FleaMarketStock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/FleaMarketStock.png -------------------------------------------------------------------------------- /src/Images/Gaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/Gaming.png -------------------------------------------------------------------------------- /src/Images/GamingStock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/GamingStock.png -------------------------------------------------------------------------------- /src/Images/Loader/L1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/Loader/L1.png -------------------------------------------------------------------------------- /src/Images/Loader/L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/Loader/L2.png -------------------------------------------------------------------------------- /src/Images/Loader/L3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/Loader/L3.png -------------------------------------------------------------------------------- /src/Images/Loader/L4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/Loader/L4.png -------------------------------------------------------------------------------- /src/Images/Loader/L5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/Loader/L5.png -------------------------------------------------------------------------------- /src/Images/Loader/L6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/Loader/L6.png -------------------------------------------------------------------------------- /src/Images/WeaponExpo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/WeaponExpo.png -------------------------------------------------------------------------------- /src/Images/WeaponExpoStock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/WeaponExpoStock.png -------------------------------------------------------------------------------- /src/Images/dictationarySet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/dictationarySet.png -------------------------------------------------------------------------------- /src/Images/fullBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/fullBG.png -------------------------------------------------------------------------------- /src/Images/instaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/instaIcon.png -------------------------------------------------------------------------------- /src/Images/linkedinIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/linkedinIcon.png -------------------------------------------------------------------------------- /src/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/logo.png -------------------------------------------------------------------------------- /src/Images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/Images/text.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/src/index.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmesidhu/React-nexeraCET24-website/HEAD/tailwind.config.js --------------------------------------------------------------------------------