diff --git a/components/AnimatedScrollButton/index.module.css b/components/AnimatedScrollButton/index.module.css index 4914012..bd8df45 100644 --- a/components/AnimatedScrollButton/index.module.css +++ b/components/AnimatedScrollButton/index.module.css @@ -12,11 +12,11 @@ } .mouse:hover { - /* @apply border-blue; - box-shadow: 0px 0px 14px 1px rgb(36 172 255); */ + @apply border-blue; + box-shadow: 0px 0px 14px 1px rgb(36 172 255); /* For Christmas theme */ - @apply border-golden; - box-shadow: 0px 0px 14px 1px #ffed79; + /* @apply border-golden; */ + /* box-shadow: 0px 0px 14px 1px #ffed79; */ } .cursor { @@ -30,9 +30,9 @@ } .mouse:hover .cursor { - /* @apply bg-blue; */ + @apply bg-blue; /* For Christmas Theme */ - @apply bg-golden; + /* @apply bg-golden; */ animation: none; } diff --git a/components/StyledText/Glitter.module.css b/components/StyledText/Glitter.module.css index ea2c430..f3590aa 100644 --- a/components/StyledText/Glitter.module.css +++ b/components/StyledText/Glitter.module.css @@ -15,9 +15,9 @@ position: absolute; bottom: 0; left: 0; - /* background: linear-gradient(to right, transparent, #24acff); */ - /* below background-color is for christmas theme */ - background: linear-gradient(to right, transparent, rgb(255, 237, 121)); + background: linear-gradient(to right, transparent, #24acff); + /* For christmas theme */ + /* background: linear-gradient(to right, transparent, rgb(255, 237, 121)); */ height: 3px; width: 100%; animation: animate 2s linear infinite; diff --git a/components/associations/association.module.css b/components/associations/association.module.css index 1af5a72..71213c3 100644 --- a/components/associations/association.module.css +++ b/components/associations/association.module.css @@ -30,9 +30,9 @@ height: 130%; width: 130%; border-radius: 50%; - /* background: linear-gradient(90deg, #00ccff, #98e8fc); */ + background: linear-gradient(90deg, #00ccff, #98e8fc); /* For Christmas Theme */ - background: linear-gradient(90deg, #ffa776, #ffed79); + /* background: linear-gradient(90deg, #ffa776, #ffed79); */ opacity: 0.25; } diff --git a/components/button/Button.module.css b/components/button/Button.module.css index 0172dc5..e65ccea 100644 --- a/components/button/Button.module.css +++ b/components/button/Button.module.css @@ -13,11 +13,11 @@ width: 0; height: 0; border-radius: 50%; + background: rgb(51, 121, 238); + background: radial-gradient(circle, rgba(51, 121, 238, 1) 0%, rgba(36, 172, 255, 1) 100%); /* For Christmas Theme */ - background: #ffed79; - background: radial-gradient(circle, #ffa776 0%, #ffed79, 100%); - /* background: rgb(51, 121, 238); - background: radial-gradient(circle, rgba(51, 121, 238, 1) 0%, rgba(36, 172, 255, 1) 100%); */ + /* background: #ffed79; + background: radial-gradient(circle, #ffa776 0%, #ffed79, 100%); */ transition: width 0.5s, height 0.5s; } diff --git a/components/event/event.module.css b/components/event/event.module.css index 607b2b8..43c4e79 100644 --- a/components/event/event.module.css +++ b/components/event/event.module.css @@ -16,9 +16,9 @@ transition: transform ease 250ms; border-radius: 0.5rem; overflow: hidden; - /* box-shadow: 0 0 5px 1px hsl(203, 100%, 57%); */ + box-shadow: 0 0 5px 1px hsl(203, 100%, 57%); /* For Christmas Theme */ - box-shadow: 0 0 5px 1px #FFED79; + /* box-shadow: 0 0 5px 1px #ffed79; */ } .card:hover { @@ -69,9 +69,9 @@ top: 100%; height: 3px; width: calc(100% + 2.5rem); + background: hsl(203, 100%, 57%); /* For Christmas Theme */ - background: #FFED79; - /* background: hsl(203, 100%, 57%); */ + /* background: #FFED79; */ transform: scaleX(0); transition: transform 200ms ease; transform-origin: left; @@ -92,8 +92,8 @@ text-decoration: none; color: black; /* For Christmas Theme */ - background: #FFED79; - /* background: hsl(203, 100%, 57%); */ + /* background: #ffed79; */ + background: hsl(203, 100%, 57%); padding: 0.5em 1.25em; border-radius: 0.25rem; } diff --git a/components/navbar/Hamburger.module.css b/components/navbar/Hamburger.module.css index 0a2ad3b..ca72f7a 100644 --- a/components/navbar/Hamburger.module.css +++ b/components/navbar/Hamburger.module.css @@ -42,9 +42,9 @@ } .navLink:hover { - /* @apply text-blue; */ + @apply text-blue; /* For Christmas Theme */ - @apply text-golden; + /* @apply text-golden; */ } .navLink:hover::after { diff --git a/components/navbar/Navbar.js b/components/navbar/Navbar.js index 1751469..a6a138e 100644 --- a/components/navbar/Navbar.js +++ b/components/navbar/Navbar.js @@ -4,7 +4,7 @@ import { HiMenuAlt4 } from 'react-icons/hi'; import Image from 'next/image'; import Link from 'next/link'; import styles from './Navbar.module.css'; -import Logo from '../../assets/christmas_theme/christmas-theme-logo.png'; +import Logo from '../../assets/hncc-logo.png'; import Button from '../button/Button'; import Sidebar from './Sidebar'; @@ -95,9 +95,9 @@ function Navbar() { > diff --git a/components/navbar/Navbar.module.css b/components/navbar/Navbar.module.css index 083e910..9d3579f 100644 --- a/components/navbar/Navbar.module.css +++ b/components/navbar/Navbar.module.css @@ -27,10 +27,10 @@ width: fit-content; } .navbarList > .navLink:hover { - /* @apply text-blue font-medium; */ + @apply text-blue font-medium; /* For christmas theme */ - @apply text-golden font-medium; + /* @apply text-golden font-medium; */ } .humburgerMenu { diff --git a/components/navbar/Sidebar.js b/components/navbar/Sidebar.js index 1b7f824..5b1f06f 100644 --- a/components/navbar/Sidebar.js +++ b/components/navbar/Sidebar.js @@ -4,7 +4,7 @@ import { CgClose } from 'react-icons/cg'; import Image from 'next/image'; import Link from 'next/link'; import styles from './Hamburger.module.css'; -import Logo from '../../assets/christmas_theme/christmas-theme-logo.png'; +import Logo from '../../assets/hncc-logo.png'; import Button from '../button/Button'; const SpanStyle = { @@ -113,8 +113,9 @@ function Sidebar({ isMounted, unmount }) { > diff --git a/components/screen/Screen.js b/components/screen/Screen.js index 7d52f93..89ad6b3 100644 --- a/components/screen/Screen.js +++ b/components/screen/Screen.js @@ -1,5 +1,5 @@ import { useEffect } from 'react'; -import ParticleBackground from '../../assets/christmas_theme/ParticlesBg'; +// import ParticleBackground from '../../assets/christmas_theme/ParticlesBg'; import Footer from '../footer/Footer'; import Navbar from '../navbar/Navbar'; import SocialsBar from '../socialsbar/SocialsBar'; @@ -22,7 +22,8 @@ function Screen({ children }) { return (
- + {/* For Christmas Theme */} + {/* */} {children} diff --git a/components/socialsbar/SocialsBar.module.css b/components/socialsbar/SocialsBar.module.css index 9a57df4..03c1101 100644 --- a/components/socialsbar/SocialsBar.module.css +++ b/components/socialsbar/SocialsBar.module.css @@ -12,7 +12,7 @@ } .socialsBarIcons:hover { @apply text-blue-light; - /* fill: rgb(56, 200, 236) !important; */ + fill: rgb(56, 200, 236) !important; /* For christmas theme */ - fill: rgb(255, 237, 121) !important; + /* fill: rgb(255, 237, 121) !important; */ } diff --git a/components/sponsors/sponsors.module.css b/components/sponsors/sponsors.module.css index 07fcd59..b68ec96 100644 --- a/components/sponsors/sponsors.module.css +++ b/components/sponsors/sponsors.module.css @@ -27,9 +27,9 @@ height: 160%; min-height: calc(100% + 50px); width: 50%; - /* background: linear-gradient(#00ccff, #98e8fc); */ - /* Below is for christmas theme */ - background: linear-gradient(rgb(255, 237, 121), rgb(253, 244, 186)); + background: linear-gradient(#00ccff, #98e8fc); + /* For christmas theme */ + /* background: linear-gradient(rgb(255, 237, 121), rgb(253, 244, 186)); */ animation: animate 4s linear infinite; opacity: 0.25; transition: all 400ms ease-in-out; diff --git a/components/teams/Team.module.css b/components/teams/Team.module.css index d6572c5..bc82f2a 100644 --- a/components/teams/Team.module.css +++ b/components/teams/Team.module.css @@ -1,20 +1,19 @@ .card { @apply p-4 relative flex flex-col justify-center items-center overflow-hidden rounded-2xl; min-height: 350px; - /* background: rgb(0, 204, 255); */ + background: rgb(0, 204, 255); /* For christmas theme */ background: rgb(255, 237, 121); - /* For Christmas theme */ - background: linear-gradient( + /* background: linear-gradient( 45deg, rgba(255, 237, 121, 0.44861694677871145) 0%, rgba(253, 244, 186, 0.4) 100% - ); - /* background: linear-gradient( + ); */ + background: linear-gradient( 45deg, rgba(0, 204, 255, 0.44861694677871145) 0%, rgba(152, 232, 252, 0.4) 100% - ); */ + ); transition: all 300ms ease-in-out; } @@ -30,9 +29,9 @@ .card::before { @apply absolute w-32; content: ''; - /* background: linear-gradient(#00ccff, #98e8fc); */ + background: linear-gradient(#00ccff, #98e8fc); /* For christmas theme */ - background: linear-gradient(#ffed79, #ffa776); + /* background: linear-gradient(#ffed79, #ffa776); */ animation: animate 4s linear infinite; height: 140%; opacity: 0; @@ -54,9 +53,9 @@ } .socials > a:hover > svg { - /* fill: #51bcff; */ + fill: #51bcff; /* For Christmas theme */ - fill: rgb(255, 237, 121); + /* fill: rgb(255, 237, 121); */ } .postHead { diff --git a/components/video/Video.module.css b/components/video/Video.module.css index 5331a05..8385931 100644 --- a/components/video/Video.module.css +++ b/components/video/Video.module.css @@ -2,8 +2,8 @@ @apply relative; height: 90vh; @apply sm:h-auto; - /* Below styling is for christmas theme */ - background: url('../../assets/christmas_theme/background3.png'); + /* For christmas theme */ + /* background: url('../../assets/christmas_theme/background3.png'); */ background-size: cover; } @@ -21,8 +21,8 @@ transition: all 400ms ease-in-out; height: 100%; overflow: hidden; - /* Below styling is for christmas theme */ - background: linear-gradient(90.28deg, #ffed79 1.18%, #ffa776 98.69%); + /* For christmas theme */ + /* background: linear-gradient(90.28deg, #ffed79 1.18%, #ffa776 98.69%); */ background-clip: text; color: transparent; } diff --git a/lib/data/TeamData.js b/lib/data/TeamData.js index 6137930..05fc2e0 100644 --- a/lib/data/TeamData.js +++ b/lib/data/TeamData.js @@ -1,181 +1,7 @@ -export const TeamData2k19 = [ - { - name: 'Zeeshan Ashraf', - title: 'ECE 2K19', - socials: { - gb: 'zeeshan-2k1', - linkedin: 'zeeshan-ashraf-38897b1a6', - email: 'ashraf2k1zeeshan@gmail.com', - }, - imageSrc: 'zeeshan_ashraf', - }, - { - name: 'Shivam Kedia', - title: 'IT 2K19', - socials: { - gb: 'skshivamkedia', - linkedin: 'skshivamkedia', - email: 'skshivamkedia96@gmail.com', - }, - imageSrc: 'shivam_kedia', - }, - { - name: 'Anjali Kumari', - title: 'Chemical 2k19', - socials: { - gb: 'anjali1361', - linkedin: 'anjali1361', - email: 'anjalikumari13617@gmail.com', - }, - imageSrc: 'anjali_kumari', - }, - { - name: 'Riya Kumari', - title: 'CSE 2k19', - socials: { - gb: 'Riya-code', - linkedin: 'riya-kumari-8639671a1', - email: 'rj220699@gmail.com', - }, - imageSrc: 'riya_kumari', - }, - { - name: 'Abhinav Kr Singh', - title: 'IT 2k19', - socials: { - gb: 'abhinav72610', - linkedin: 'abhinav-kr-singh-490132193', - email: 'abhinav72610@gmail.com', - }, - imageSrc: 'abhinav_it', - }, - { - name: 'Abhinav Kumar', - title: 'Mechanical 2k19', - socials: { - gb: 'abhinavkr111', - linkedin: 'abhinav-k-b1b1b3bb', - email: 'abhinav.kumar11o4@gmail.com', - }, - imageSrc: 'abhinav_mech', - }, - { - name: 'Jayesh Kumar', - title: 'CSE 2k19', - socials: { - gb: 'jayeshkumar09', - linkedin: 'jayeshkumar09/', - email: 'kumarjayesh09feb@gmail.com', - }, - imageSrc: 'jayesh_kumar', - }, - { - name: 'Anisha Murmu', - title: 'ECE 2k19', - socials: { - gb: 'anishamurmu', - linkedin: 'anisha-murmu-2aa35b1a6', - email: 'anishaamber03@gmail.com', - }, - imageSrc: 'anisha_murmu', - }, - { - name: 'Anand Kumar', - title: 'ECE 2k19', - socials: { - gb: 'anandbit', - linkedin: 'anandbit', - email: 'kumarabhishek31853@gmail.com', - }, - imageSrc: 'anand', - }, - { - name: 'Piyush Gupta', - title: 'CSE 2k19', - socials: { - gb: 'guptapiyysh233', - linkedin: 'piyush-gupta-1497681b2', - email: 'guptapiyush233@gmail.com', - }, - imageSrc: 'piyush_gupta', - }, - { - name: 'Abhinav Kr Singh', - title: 'Metallurgy 2k19', - socials: { - gb: 'A1bhinavSingh', - linkedin: 'abhinav-singh-1961251a3', - email: 'abhinav.singhac@gmail.com', - }, - imageSrc: 'abhinav_metal', - }, - { - name: 'Rahul Kumar', - title: 'CSE 2k19', - socials: { - gb: 'rahulkiller104', - linkedin: 'rahulkumar10433.com', - email: 'rahulkumar10433@gmail.com', - }, - imageSrc: 'rahul_kumar', - }, - { - name: 'Rishav Gupta', - title: 'Electrical 2k19', - socials: { - gb: 'rishav311', - linkedin: 'rishav-gupta-8303601a7', - email: 'mrg.rishavgupta@gmail.com', - }, - imageSrc: 'rishav_gupta', - }, - - { - name: 'Sapna Kumari', - title: 'ECE 2k19', - socials: { - gb: 'SapnaGr8', - linkedin: 'sapna-kumari-0909721b1', - email: 'kumarisapna111094@gmail.com', - }, - imageSrc: 'sapna_kumari', - }, - { - name: 'Aamir Akhtar', - title: 'Chemical 2k19', - socials: { - gb: 'theaamirakhtar', - linkedin: 'md-aamir-akhtar-30b589189', - email: 'aamirakhtar007@gmail.com', - }, - imageSrc: 'aamir', - }, - { - name: 'Himadri Pragya', - title: 'IT 2k19', - socials: { - gb: 'Himadripragya', - linkedin: 'himadri-pragya-0284b51a6', - email: 'himadripragyaa@gmail.com', - }, - imageSrc: 'himadri_pragya', - }, - { - name: 'N.Harshita', - title: 'CSE 2k19', - socials: { - gb: 'HARSHITA1111', - linkedin: 'n-harshita-a774981a6', - email: 'harshitan1020@gmail.com', - }, - imageSrc: 'n_harshita', - }, -]; - export const TeamData2k20 = [ { name: 'Kunal Mahatha', - title: 'President', + title: 'CSE 2k20', socials: { gb: 'kunal-mahatha', linkedin: 'kunalmahatha', @@ -185,7 +11,7 @@ export const TeamData2k20 = [ }, { name: 'Divyansh Sahu', - title: 'Vice-President', + title: 'Electrical 2k20', socials: { gb: 'div-sahu55', linkedin: 'divyanshsahu55', @@ -195,7 +21,7 @@ export const TeamData2k20 = [ }, { name: 'Aniket Tiwary', - title: 'Vice-President', + title: 'IT 2k20', socials: { gb: 'tiwaryaniket', linkedin: 'aniket-tiwary-0ba759206', @@ -205,7 +31,7 @@ export const TeamData2k20 = [ }, { name: 'Ritesh Kumar', - title: 'General Secretary', + title: 'ECE 2k20', socials: { gb: 'RajRitesh', linkedin: 'ritesh-kumar-39a471208', @@ -215,7 +41,7 @@ export const TeamData2k20 = [ }, { name: 'Prafulla Shekhar', - title: 'Technical Secretary', + title: 'IT 2k20', socials: { gb: 'prafullashekhar', linkedin: 'prafulla-shekhar-292820207', @@ -225,7 +51,7 @@ export const TeamData2k20 = [ }, { name: 'Vishwajeet Kumar Singh', - title: 'Joint-Secretary', + title: 'IT 2k20', socials: { gb: 'vishwajeet-hash', linkedin: 'vishwajeet01', @@ -235,7 +61,7 @@ export const TeamData2k20 = [ }, { name: 'Pranav Singh', - title: 'Joint-Secretary', + title: 'IT 2k20', socials: { gb: 'PR4N4V-51NGH', linkedin: 'pranav-singh-2818091b8', @@ -245,7 +71,7 @@ export const TeamData2k20 = [ }, { name: 'Nipun Kumar', - title: 'Treasurer', + title: 'IT 2k20', socials: { gb: 'nipun2003', linkedin: 'nipunkumar815313', @@ -254,8 +80,8 @@ export const TeamData2k20 = [ imageSrc: 'raj_nipun', }, { - name: 'Harsh kumar jha', - title: 'Treasurer', + name: 'Harsh kumar Jha', + title: 'Chemical 2k20', socials: { gb: 'kumarharsh2396', linkedin: 'harsh-kumar-jha-359231183', @@ -265,7 +91,7 @@ export const TeamData2k20 = [ }, { name: 'Kumar Rishab', - title: 'Joint-treasurer', + title: 'Electrical 2k20', socials: { gb: 'rishab0902', linkedin: 'kumar-rishab', @@ -275,7 +101,7 @@ export const TeamData2k20 = [ }, { name: 'Anjali Goswami', - title: 'Joint-treasurer', + title: 'ECE 2k20', socials: { gb: 'anjaligoswami', linkedin: 'anjaligoswami20', @@ -283,19 +109,9 @@ export const TeamData2k20 = [ }, imageSrc: 'anjali', }, - { - name: 'Nipun Kumar', - title: 'Technical-Lead (Mobile App)', - socials: { - gb: 'nipun2003', - linkedin: 'nipunkumar815313', - email: 'nipunvirat0@gmail.com', - }, - imageSrc: 'raj_nipun', - }, { name: 'Unnat Kumar', - title: 'Technical-Lead (CP)', + title: 'IT 2k20', socials: { gb: 'UnnatKr', linkedin: 'unnatkumar', @@ -305,7 +121,7 @@ export const TeamData2k20 = [ }, { name: 'Suraj Kumar Barnwal', - title: 'Technical-Lead (ML)', + title: 'CSE 2k20', socials: { gb: 'RedocamaI', linkedin: 'suraj-barnwal', @@ -315,7 +131,7 @@ export const TeamData2k20 = [ }, { name: 'Abhishek Anand', - title: 'Technical-Lead (Web App)', + title: 'Mechanical 2k20', socials: { gb: 'royabhi00', linkedin: 'abhishek-anand-566115201', @@ -325,7 +141,7 @@ export const TeamData2k20 = [ }, { name: 'Aditya Kumar Mandal', - title: 'Technical-Lead (Web App)', + title: 'Production 2k20', socials: { gb: 'akm-akm', linkedin: 'aditya-mandal', @@ -335,7 +151,7 @@ export const TeamData2k20 = [ }, { name: 'Krit Raj', - title: 'Technical-Lead (Infrastructure)', + title: 'IT 2k20', socials: { gb: 'Krit-coder', linkedin: 'krit-raj-7978b5207', @@ -345,7 +161,7 @@ export const TeamData2k20 = [ }, { name: 'Shiwani Kumari', - title: 'Design Head', + title: 'ECE 2k20', socials: { gb: 'shiwi123', linkedin: 'shiwani-kumari-69298b207', @@ -355,7 +171,7 @@ export const TeamData2k20 = [ }, { name: 'Jasmine C Kashhap', - title: 'Joint-Design Head', + title: 'ECE 2k20', socials: { gb: 'jasmine-kachhap-57110b207', linkedin: 'jasmine-kachhap-57110b207', @@ -365,7 +181,7 @@ export const TeamData2k20 = [ }, { name: 'Shital Kumari', - title: 'Joint-Design Head', + title: 'CSE 2k20', socials: { gb: 'chimchimot7', linkedin: 'shital-kumari-0a2693212', @@ -375,7 +191,7 @@ export const TeamData2k20 = [ }, { name: 'Harshita', - title: 'Event Manager(Operations)', + title: 'Civil 2k20', socials: { gb: 'hrshita-kshyp', linkedin: 'harshita-kshyp', @@ -385,7 +201,7 @@ export const TeamData2k20 = [ }, { name: 'Ruhi Rani', - title: 'Event Manager(Media & Marketing)', + title: 'IT 2k20', socials: { gb: 'ruhirani011', linkedin: 'ruhi-rani-a06a62204/?originalSubdomain=in', @@ -395,7 +211,7 @@ export const TeamData2k20 = [ }, { name: 'Shweta Rani', - title: 'Event Manager(Executive)', + title: 'IT 2k20', socials: { gb: 'Shweta-Rani1', linkedin: 'shweta-rani-54bb11206', @@ -405,17 +221,17 @@ export const TeamData2k20 = [ }, { name: 'Ritu Kumari', - title: 'Public Relation Officer', + title: 'Civil 2k20', socials: { gb: 'ritumona01', - linkedin: 'ritu-kumari-31618b20', + linkedin: 'ritu-kumari-31618b209', email: 'ritukumarikarmali@gmail.com', }, imageSrc: 'ritu_kumari', }, { name: 'Tanweer Ansari', - title: 'Public Relation Officer', + title: 'ECE 2k20', socials: { gb: 'Tanweer52', linkedin: 'tanweer-ansari-724721209', @@ -425,7 +241,7 @@ export const TeamData2k20 = [ }, { name: 'Divas Gupta', - title: 'Member', + title: 'CSE 2k20', socials: { gb: 'DivasGupta7', linkedin: 'divas-gupta-13712417b', @@ -435,7 +251,7 @@ export const TeamData2k20 = [ }, { name: 'Lalan Kumar Saw', - title: 'Member', + title: 'Production 2k20', socials: { gb: 'lalan-kumar-alt', linkedin: 'lalan-saw-535761209', @@ -447,28 +263,68 @@ export const TeamData2k20 = [ export const TeamData2k21 = [ { - name: 'Badal Kumar Singh', - title: 'UX Designing', + name: 'Soumik Kumar Ghoshal', + title: 'President', socials: { - gb: 'BDS08', - linkedin: 'badal-singh-73553622a', - email: 'jpbadalsingh8899@gmail.com', + gb: 'SoumiK-777', + linkedin: 'soumik-ghoshal-b26784232', + email: 'soumik.kumar200803@gmail.com', }, - imageSrc: 'badal_kumar_singh', + imageSrc: 'soumik_kumar_ghoshal', }, { - name: 'Saurabh Kumar Singh', - title: 'Competitive Programming', + name: 'Anuj Kumar Barnwal', + title: 'Vice-President', socials: { - gb: 'saurabhsinghh', - linkedin: 'saurabh-singh-qwerty12345', - email: 'saurabhsinghnewlife@gmail.com', + gb: 'anujk2', + linkedin: 'anuj-kumar-9365b822a', + email: 'anujk2k2@gmail.com', }, - imageSrc: 'saurabh_kumar_singh', + imageSrc: 'anuj_kumar_barnwal', + }, + { + name: 'Ruma Karn', + title: 'Vice-President', + socials: { + gb: 'rumakarn', + linkedin: 'ruma-karn-668893201', + email: 'rumakarn70@gmail.com', + }, + imageSrc: 'ruma_karn', + }, + { + name: 'Abhay Anand', + title: 'General Secretary', + socials: { + gb: 'abhayanand08', + linkedin: 'abhay-anand-15a819212', + email: 'abhayanandjsr@gmail.com', + }, + imageSrc: 'abhay_anand', + }, + { + name: 'Mohit Pandey', + title: 'Technical Secretary', + socials: { + gb: 'MOHIT-PANDEY215', + linkedin: 'mohit-pandey-5b0756197', + email: 'pandeymohit215@gmail.com', + }, + imageSrc: 'mohit_pandey', + }, + { + name: 'Tanmay Agarwal', + title: 'Joint-Secretary', + socials: { + gb: 'Agarwal16', + linkedin: 'tanmay-agarwal-12a0531b8', + email: 'agarwaltanmay401@gmail.com', + }, + imageSrc: 'tanmay_agarwal', }, { name: 'Rashika Kumari', - title: 'Web Development', + title: 'Joint-Secretary', socials: { gb: 'Rashika1810', linkedin: 'rashika-kumari-586329230', @@ -477,38 +333,48 @@ export const TeamData2k21 = [ imageSrc: 'rashika_kumari', }, { - name: 'Ruchi Priya', - title: 'Machine Learning', + name: 'Sumit Kumar', + title: 'Treasurer', socials: { - gb: 'ruchipriya21', - linkedin: 'ruchi-priya-47a31122b', - email: 'priya21ruchi@gmail.com', + gb: '', + linkedin: 'sumit-kumar-133782197', + email: 'sumitkumar89694@gmail.com', }, - imageSrc: 'ruchi_priya', + imageSrc: 'sumit_kumar_mech', }, { - name: 'Sumit Kumar', - title: 'Web Development', + name: 'Ritika Kumari', + title: 'Treasurer', socials: { - gb: 'Riosumit', - linkedin: 'sumit-kumar-53a07a230', - email: 'rajsumit22032003@gmail.com', + gb: 'ritika0405', + linkedin: 'ritika-kumari-9394951ab', + email: 'riya.ritika1112@gmail.com', }, - imageSrc: 'sumit_kumar', + imageSrc: 'ritika_kumari', }, { - name: 'Abhay Anand', - title: 'Web Development', + name: 'Anjali Barnwal', + title: 'Joint-treasurer', socials: { - gb: 'abhayanand08', - linkedin: 'abhay-anand-15a819212', - email: 'abhayanandjsr@gmail.com', + gb: 'anjalibarnwal31', + linkedin: 'anjali-barnwal-410aa9228', + email: 'anjalibarnwal31@gmail.com', }, - imageSrc: 'abhay_anand', + imageSrc: 'anjali_barnwal', + }, + { + name: 'Priyanshu Katyayni', + title: 'Joint-treasurer', + socials: { + gb: 'lonewolf2299', + linkedin: 'priyanshu-katyayni-70b0a4233', + email: 'priyanshukatyayni229@gmail.com', + }, + imageSrc: 'priyanshu_katyayni', }, { name: 'Tanmay Agarwal', - title: 'Android Development', + title: 'Technical-Lead (Mobile App)', socials: { gb: 'Agarwal16', linkedin: 'tanmay-agarwal-12a0531b8', @@ -517,68 +383,89 @@ export const TeamData2k21 = [ imageSrc: 'tanmay_agarwal', }, { - name: 'Nisha Kumari', - title: 'Graphic Designing', + name: 'Abhishek Mondal', + title: 'Technical-Lead (CP)', socials: { - gb: 'Nisha212', - linkedin: 'nisha-kumari-97b662230', - email: 'nishakumarin408@gmail.com', + gb: 'Abhishekmondal256', + linkedin: 'abhishek-mondal-90544a227', + email: 'abhishekmondal453@gmail.com', }, - imageSrc: 'nisha_kumari', + imageSrc: 'abhishek_mondal', + }, + { + name: 'Ruchi Priya', + title: 'Technical-Lead (ML)', + socials: { + gb: 'ruchipriya21', + linkedin: 'ruchi-priya-47a31122b', + email: 'priya21ruchi@gmail.com', + }, + imageSrc: 'ruchi_priya', }, { name: 'Pratik Srivastava', - title: 'Web Development', + title: 'Technical-Lead (Web App)', socials: { gb: 'pratiksrivastava01', linkedin: 'srivastava2191', - email: 'srivastavapratik35@gmail.com', + email: 'srivastava2191@gmail.com ', }, imageSrc: 'pratik_srivastava', }, + { - name: 'Anuj Kumar Barnwal', - title: 'Competitive Programming', + name: 'Amarjeet Anand', + title: 'Technical-Lead (Infrastructure)', socials: { - gb: 'anujk2', - linkedin: 'anuj-kumar-9365b822a', - email: 'anujk2k2@gmail.com', + gb: 'Amarjeet421', + linkedin: 'amarjeet-anand-54b105230', + email: 'amarjeetanand421@gmail.com', }, - imageSrc: 'anuj_kumar_barnwal', + imageSrc: 'amarjeet_anand', }, { - name: 'Sumit Kumar', - title: 'Graphic Designing', + name: 'Piyusha Kumari', + title: 'Design Head', socials: { - gb: '', - linkedin: 'sumit-kumar-133782197', - email: 'sumitkumar89694@gmail.com', + gb: 'Piyusha003', + linkedin: 'piyusha-kumari-328177225', + email: 'piyusha@gmail.com', }, - imageSrc: 'sumit_kumar_mech', + imageSrc: 'piyusha_kumari', }, { - name: 'Shail kumari', - title: 'Competitive Programming', + name: 'Suraj Kumar', + title: 'Joint-Design Head', socials: { - gb: 'Shailkumari16', - linkedin: 'shail-kumari-17858b229', - email: 'shailk828113@gmail.com', + gb: 'SUBROTO092', + linkedin: 'suraj-kumar-3377b6216', + email: 'Subroto092@gmail.com', }, - imageSrc: 'shail_kumari', + imageSrc: 'suraj_kumar', }, { - name: 'Soumik Kumar Ghoshal ', - title: 'Machine Learning', + name: 'Nisha Kumari', + title: 'Joint-Design Head', socials: { - gb: 'SoumiK-777', - linkedin: 'soumik-ghoshal-b26784232', - email: 'soumik.kumar200803@gmail.com', + gb: 'Nisha212', + linkedin: 'nisha-kumari-97b662230', + email: 'nishakumarin408@gmail.com', }, - imageSrc: 'soumik_kumar_ghoshal', + imageSrc: 'nisha_kumari', + }, + { + name: 'Sumit Kumar', + title: 'Event Manager(Operations)', + socials: { + gb: 'Riosumit', + linkedin: 'sumit-kumar-53a07a230', + email: 'rajsumit22032003@gmail.com', + }, + imageSrc: 'sumit_kumar', }, { name: 'Anjali Barnwal', - title: 'Competitive Programming', + title: 'Event Manager(Media & Marketing)', socials: { gb: 'anjalibarnwal31', linkedin: 'anjali-barnwal-410aa9228', @@ -587,18 +474,38 @@ export const TeamData2k21 = [ imageSrc: 'anjali_barnwal', }, { - name: 'Abhishek Mondal', - title: 'Competitive Programming', + name: 'Saurabh Kumar Singh', + title: 'Event Manager(Executive)', socials: { - gb: 'Abhishekmondal256', - linkedin: 'abhishek-mondal-90544a227', - email: 'abhishekmondal453@gmail.com', + gb: 'saurabhsinghh', + linkedin: 'saurabh-singh-qwerty12345', + email: 'saurabhsinghnewlife@gmail.com', }, - imageSrc: 'abhishek_mondal', + imageSrc: 'saurabh_kumar_singh', + }, + { + name: 'Badal Kumar Singh', + title: 'Public Relation Officer', + socials: { + gb: 'BDS08', + linkedin: 'badal-singh-73553622a', + email: 'jpbadalsingh8899@gmail.com', + }, + imageSrc: 'badal_kumar_singh', + }, + { + name: 'Shail Kumari', + title: 'Public Relation Officer', + socials: { + gb: 'Shailkumari16', + linkedin: 'shail-kumari-17858b229', + email: 'shailk828113@gmail.com', + }, + imageSrc: 'shail_kumari', }, { name: 'Ritik Raj Pandey', - title: 'Competitive Programming', + title: 'Event Manager(Sponsorship)', socials: { gb: 'Ritikphenomenon', linkedin: 'ritikraj-pandey-b67a17221', @@ -607,83 +514,236 @@ export const TeamData2k21 = [ imageSrc: 'ritik_raj_pandey', }, { - name: 'Mohit Pandey', + name: 'Esha Kumari', + title: 'Event Manager(Sponsorship)', + socials: { + gb: 'Esha-01', + linkedin: 'esha-kumari-47b854232', + email: 'eshakumari2002@gmail.com', + }, + imageSrc: 'esha_kumari', + }, +]; + +export const TeamData2k22 = [ + { + name: 'Tisha Agrawal', title: 'Web Development', socials: { - gb: 'MOHIT-PANDEY215', - linkedin: 'mohit-pandey-5b0756197', - email: 'pandeymohit215@gmail.com', + gb: 'tishaagrawall', + linkedin: 'tisha-agrawal-512b12246', + email: 'agrawaltisha37@gmail.com', }, - imageSrc: 'mohit_pandey', + imageSrc: 'tisha_agrawal', }, { - name: 'Ritika Kumari', - title: 'Competitive Programming', + name: 'Pranav Kumar Singh', + title: 'Web Development', socials: { - gb: 'ritika0405', - linkedin: 'ritika-kumari-9394951ab', - email: 'riya.ritika1112@gmail.com', + gb: 'Pranav-Kumar-Singh-038', + linkedin: 'pranav-kumar-singh-1a365124a', + email: 'kumarharsh073@gmail.com', }, - imageSrc: 'ritika_kumari', + imageSrc: 'pranav_kumar_singh', }, { - name: 'Amarjeet Anand', + name: 'Namita Sinha', title: 'Graphic Designing', socials: { - gb: 'Amarjeet421', - linkedin: 'amarjeet-anand-54b105230', - email: 'amarjeetanand421@gmail.com', + gb: 'namitasinha21', + linkedin: 'namita-sinha-45b361256', + email: 'nsinha1827@gmail.com', }, - imageSrc: 'amarjeet_anand', + imageSrc: 'namita_sinha', }, { - name: 'Esha Kumari', - title: 'Game Development', + name: 'Gourav Mondal', + title: 'Competitive Programming', socials: { - gb: 'Esha-01', - linkedin: 'esha-kumari-47b854232', - email: 'eshakumari2002@gmail.com', + gb: 'Gourav123-sys', + linkedin: 'gourav-mondal-55a812204', + email: 'gouravmondal30june2002@gmail.com', }, - imageSrc: 'esha_kumari', + imageSrc: 'gourav_mondal', }, { - name: 'Ruma Karn', + name: 'Amaan Husaain', + title: 'Web Development', + socials: { + gb: 'Amaanhussain11', + linkedin: 'amaan-hussain-67407725b', + email: 'amaanhussain983@gmail.com', + }, + imageSrc: 'amaan_hussain', + }, + { + name: 'Vaishwanavi Kumari', + title: 'Web Development', + socials: { + gb: 'Vaishwanavi', + linkedin: 'vaishwanavi-kumari-39886b25b', + email: 'vaishwanavikumari@gmail.com', + }, + imageSrc: 'vaishwanavi_kumari', + }, + { + name: 'Syed Adnan Ahmed', + title: 'Machine Learning', + socials: { + gb: 'AHMADSYED4312', + linkedin: 'ahmadsyed4312', + email: 'syed.bitsindri@gmail.com', + }, + imageSrc: 'syed_adnan_ahmed', + }, + { + name: 'Akarshi Sinha', + title: 'Machine Learning', + socials: { + gb: 'rashi569', + linkedin: 'akarshi-sinha-4a1550258', + email: 'akarshisinha569@gmail.com', + }, + imageSrc: 'akarshi_sinha', + }, + { + name: 'Shruti Kedia ', + title: 'Machine Learning', + socials: { + gb: 'kediashruti09', + linkedin: 'shruti-kedia-70223123a', + email: 'shrutikedia2022@gmail.com', + }, + imageSrc: 'shruti_kedia', + }, + { + name: 'Anish Singh', title: 'Competitive Programming', socials: { - gb: 'rumakarn', - linkedin: 'ruma-karn-668893201', - email: 'rumakarn70@gmail.com', + gb: 'Anish1279', + linkedin: 'anish-singh-48a840247', + email: 'anish1279singh@gmail.com', }, - imageSrc: 'ruma_karn', + imageSrc: 'anish_singh', }, { - name: 'Piyusha Kumari', + name: 'Shreya Paul', + title: 'Web Development', + socials: { + gb: 'shreyapaul01', + linkedin: 'shreya-paul-a84606257', + email: 'shreyapaul100@yahoo.com', + }, + imageSrc: 'shreya_paul', + }, + { + name: 'Riya Gupta', + title: 'Android Development', + socials: { + gb: 'riyagupta0251', + linkedin: 'riya-gupta-6b0835256', + email: 'guptariya0251@gmail.com', + }, + imageSrc: 'riya_gupta', + }, + { + name: 'Aditya Ranjan', + title: 'Web Development', + socials: { + gb: 'arsrivastawa', + linkedin: 'adityasrivastawa', + email: 'arsrivastawa2710@gmail.com', + }, + imageSrc: 'aditya_ranjan', + }, + { + name: 'Akash Nath ', + title: 'Video Editing', + socials: { + gb: '', + linkedin: 'theakashnath', + email: 'AKkingak111@gmail.com', + }, + imageSrc: 'akash_nath', + }, + { + name: 'Naveen Prajapati', + title: 'UI/UX Designing', + socials: { + gb: 'Naveen-1043', + linkedin: 'naveen-prajapati-bb538425b', + email: 'naveen.me1043@gmail.com', + }, + imageSrc: 'naveen_prajapati', + }, + { + name: 'Harsh Raj', + title: 'Video Editing ', + socials: { + gb: 'technical-harsh-102', + linkedin: 'harsh-raj-208ba2252', + email: 'rharsh808@gmail.com', + }, + imageSrc: 'harsh_raj', + }, + { + name: 'Aman Kumar Verma ', title: 'Graphic Designing', socials: { - gb: 'Piyusha003', - linkedin: 'piyusha-kumari-328177225', - email: 'piyusha@gmail.com', + gb: 'Aman47754', + linkedin: 'aman-kumar-verma-1a8a80241', + email: 'amanverma06012004@gmail.com', }, - imageSrc: 'piyusha_kumari', + imageSrc: 'aman_kumar_verma', }, { - name: 'Suraj Kumar', + name: 'Harsh Kumar', + title: 'Competitive Programming', + socials: { + gb: 'harsh-1806', + linkedin: 'harsh1806', + email: 'helloharsh51@gmail.com', + }, + imageSrc: 'harsh_kumar', + }, + { + name: 'Divyanshu Kumar', + title: 'Web Development', + socials: { + gb: 'beingdivyanshu', + linkedin: 'divyanshu-kumar-7b4416263', + email: 'divyanshukumar2557@gmail.com', + }, + imageSrc: 'divyanshu', + }, + { + name: 'Mahika Barnwal', title: 'Graphic Designing', socials: { - gb: 'SUBROTO092', - linkedin: 'suraj-kumar-3377b6216', - email: 'Subroto092@gmail.com', + gb: 'mahi6299', + linkedin: 'mahika-barnwal-a995ba256', + email: 'mahibarnwal1234@gmail.com', }, - imageSrc: 'suraj_kumar', + imageSrc: 'mahika_barnwal', }, { - name: 'Priyanshu Katyayni', + name: 'Ashish Kumar', + title: 'Android Development', + socials: { + gb: 'Ashethyro', + linkedin: 'ashish-kumar-a599441b0', + email: 'ak4970799@gmail.com', + }, + imageSrc: 'ashish_kumar', + }, + { + name: 'Anshu Kumar Mehta ', title: 'Competitive Programming', socials: { - gb: 'lonewolf2299', - linkedin: 'priyanshu-katyayni-70b0a4233', - email: 'priyanshukatyayni229@gmail.com', + gb: 'anshux2211', + linkedin: 'anshu-kumar-mehta-42045a251', + email: 'mehtanshu2211@gmail.com', }, - imageSrc: 'priyanshu_katyayni', + imageSrc: 'anshu_kumar_mehta', }, ]; diff --git a/package-lock.json b/package-lock.json index f6da5eb..d24e383 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,6 +4,7 @@ "requires": true, "packages": { "": { + "name": "Website", "dependencies": { "emailjs-com": "^3.2.0", "jquery": "^3.6.0", @@ -11,7 +12,9 @@ "react": "^17.0.2", "react-dom": "^17.0.2", "react-icons": "^4.3.1", - "sharp": "^0.30.1" + "react-tsparticles": "2.12.2", + "sharp": "^0.30.1", + "tsparticles": "2.0.6" }, "devDependencies": { "@babel/core": "^7.16.12", @@ -3827,6 +3830,33 @@ "node": ">=0.10.0" } }, + "node_modules/react-tsparticles": { + "version": "2.12.2", + "resolved": "https://registry.npmjs.org/react-tsparticles/-/react-tsparticles-2.12.2.tgz", + "integrity": "sha512-/nrEbyL8UROXKIMXe+f+LZN2ckvkwV2Qa+GGe/H26oEIc+wq/ybSG9REDwQiSt2OaDQGu0MwmA4BKmkL6wAWcA==", + "deprecated": "@tsparticles/react is the new version, please use that", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/matteobruni" + }, + { + "type": "github", + "url": "https://github.com/sponsors/tsparticles" + }, + { + "type": "buymeacoffee", + "url": "https://www.buymeacoffee.com/matteobruni" + } + ], + "hasInstallScript": true, + "dependencies": { + "tsparticles-engine": "^2.12.0" + }, + "peerDependencies": { + "react": ">=16" + } + }, "node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", @@ -3981,9 +4011,9 @@ } }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "bin": { "semver": "bin/semver.js" } @@ -4502,6 +4532,512 @@ "json5": "lib/cli.js" } }, + "node_modules/tsparticles": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/tsparticles/-/tsparticles-2.0.6.tgz", + "integrity": "sha512-Q36YrIvDubgHJJsRYbRWlE05q1cpaLlc7L/Bi5VcfzkKVkdqSux0IMfulIMg13T32NN3Qc2jw3A8veMtIvOlCw==", + "deprecated": "tsParticles v3 is out, it contains breaking changes and it's recommended to migrate to that version with fixes and new features", + "dependencies": { + "tsparticles-engine": "^2.0.6", + "tsparticles-interaction-external-trail": "^2.0.6", + "tsparticles-plugin-absorbers": "^2.0.6", + "tsparticles-plugin-emitters": "^2.0.6", + "tsparticles-plugin-polygon-mask": "^2.0.6", + "tsparticles-slim": "^2.0.6", + "tsparticles-updater-roll": "^2.0.6", + "tsparticles-updater-tilt": "^2.0.6", + "tsparticles-updater-twinkle": "^2.0.6", + "tsparticles-updater-wobble": "^2.0.6" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/matteobruni" + } + }, + "node_modules/tsparticles-basic": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-basic/-/tsparticles-basic-2.12.0.tgz", + "integrity": "sha512-pN6FBpL0UsIUXjYbiui5+IVsbIItbQGOlwyGV55g6IYJBgdTNXgFX0HRYZGE9ZZ9psEXqzqwLM37zvWnb5AG9g==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/matteobruni" + }, + { + "type": "github", + "url": "https://github.com/sponsors/tsparticles" + }, + { + "type": "buymeacoffee", + "url": "https://www.buymeacoffee.com/matteobruni" + } + ], + "dependencies": { + "tsparticles-engine": "^2.12.0", + "tsparticles-move-base": "^2.12.0", + "tsparticles-shape-circle": "^2.12.0", + "tsparticles-updater-color": "^2.12.0", + "tsparticles-updater-opacity": "^2.12.0", + "tsparticles-updater-out-modes": "^2.12.0", + "tsparticles-updater-size": "^2.12.0" + } + }, + "node_modules/tsparticles-engine": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-engine/-/tsparticles-engine-2.12.0.tgz", + "integrity": "sha512-ZjDIYex6jBJ4iMc9+z0uPe7SgBnmb6l+EJm83MPIsOny9lPpetMsnw/8YJ3xdxn8hV+S3myTpTN1CkOVmFv0QQ==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/matteobruni" + }, + { + "type": "github", + "url": "https://github.com/sponsors/tsparticles" + }, + { + "type": "buymeacoffee", + "url": "https://www.buymeacoffee.com/matteobruni" + } + ], + "hasInstallScript": true + }, + "node_modules/tsparticles-interaction-external-attract": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-attract/-/tsparticles-interaction-external-attract-2.12.0.tgz", + "integrity": "sha512-0roC6D1QkFqMVomcMlTaBrNVjVOpyNzxIUsjMfshk2wUZDAvTNTuWQdUpmsLS4EeSTDN3rzlGNnIuuUQqyBU5w==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-external-bounce": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-bounce/-/tsparticles-interaction-external-bounce-2.12.0.tgz", + "integrity": "sha512-MMcqKLnQMJ30hubORtdq+4QMldQ3+gJu0bBYsQr9BsThsh8/V0xHc1iokZobqHYVP5tV77mbFBD8Z7iSCf0TMQ==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-external-bubble": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-bubble/-/tsparticles-interaction-external-bubble-2.12.0.tgz", + "integrity": "sha512-5kImCSCZlLNccXOHPIi2Yn+rQWTX3sEa/xCHwXW19uHxtILVJlnAweayc8+Zgmb7mo0DscBtWVFXHPxrVPFDUA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-external-connect": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-connect/-/tsparticles-interaction-external-connect-2.12.0.tgz", + "integrity": "sha512-ymzmFPXz6AaA1LAOL5Ihuy7YSQEW8MzuSJzbd0ES13U8XjiU3HlFqlH6WGT1KvXNw6WYoqrZt0T3fKxBW3/C3A==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-external-grab": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-grab/-/tsparticles-interaction-external-grab-2.12.0.tgz", + "integrity": "sha512-iQF/A947hSfDNqAjr49PRjyQaeRkYgTYpfNmAf+EfME8RsbapeP/BSyF6mTy0UAFC0hK2A2Hwgw72eT78yhXeQ==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-external-pause": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-pause/-/tsparticles-interaction-external-pause-2.12.0.tgz", + "integrity": "sha512-4SUikNpsFROHnRqniL+uX2E388YTtfRWqqqZxRhY0BrijH4z04Aii3YqaGhJxfrwDKkTQlIoM2GbFT552QZWjw==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-external-push": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-push/-/tsparticles-interaction-external-push-2.12.0.tgz", + "integrity": "sha512-kqs3V0dgDKgMoeqbdg+cKH2F+DTrvfCMrPF1MCCUpBCqBiH+TRQpJNNC86EZYHfNUeeLuIM3ttWwIkk2hllR/Q==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-external-remove": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-remove/-/tsparticles-interaction-external-remove-2.12.0.tgz", + "integrity": "sha512-2eNIrv4m1WB2VfSVj46V2L/J9hNEZnMgFc+A+qmy66C8KzDN1G8aJUAf1inW8JVc0lmo5+WKhzex4X0ZSMghBg==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-external-repulse": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-repulse/-/tsparticles-interaction-external-repulse-2.12.0.tgz", + "integrity": "sha512-rSzdnmgljeBCj5FPp4AtGxOG9TmTsK3AjQW0vlyd1aG2O5kSqFjR+FuT7rfdSk9LEJGH5SjPFE6cwbuy51uEWA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-external-slow": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-slow/-/tsparticles-interaction-external-slow-2.12.0.tgz", + "integrity": "sha512-2IKdMC3om7DttqyroMtO//xNdF0NvJL/Lx7LDo08VpfTgJJozxU+JAUT8XVT7urxhaDzbxSSIROc79epESROtA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-external-trail": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-trail/-/tsparticles-interaction-external-trail-2.12.0.tgz", + "integrity": "sha512-LKSapU5sPTaZqYx+y5VJClj0prlV7bswplSFQaIW1raXkvsk45qir2AVcpP5JUhZSFSG+SwsHr+qCgXhNeN1KA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-particles-attract": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-particles-attract/-/tsparticles-interaction-particles-attract-2.12.0.tgz", + "integrity": "sha512-Hl8qwuwF9aLq3FOkAW+Zomu7Gb8IKs6Y3tFQUQScDmrrSCaeRt2EGklAiwgxwgntmqzL7hbMWNx06CHHcUQKdQ==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-particles-collisions": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-particles-collisions/-/tsparticles-interaction-particles-collisions-2.12.0.tgz", + "integrity": "sha512-Se9nPWlyPxdsnHgR6ap4YUImAu3W5MeGKJaQMiQpm1vW8lSMOUejI1n1ioIaQth9weKGKnD9rvcNn76sFlzGBA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-interaction-particles-links": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-particles-links/-/tsparticles-interaction-particles-links-2.12.0.tgz", + "integrity": "sha512-e7I8gRs4rmKfcsHONXMkJnymRWpxHmeaJIo4g2NaDRjIgeb2AcJSWKWZvrsoLnm7zvaf/cMQlbN6vQwCixYq3A==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-move-base": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-move-base/-/tsparticles-move-base-2.12.0.tgz", + "integrity": "sha512-oSogCDougIImq+iRtIFJD0YFArlorSi8IW3HD2gO3USkH+aNn3ZqZNTqp321uB08K34HpS263DTbhLHa/D6BWw==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-move-parallax": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-move-parallax/-/tsparticles-move-parallax-2.12.0.tgz", + "integrity": "sha512-58CYXaX8Ih5rNtYhpnH0YwU4Ks7gVZMREGUJtmjhuYN+OFr9FVdF3oDIJ9N6gY5a5AnAKz8f5j5qpucoPRcYrQ==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-particles.js": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-particles.js/-/tsparticles-particles.js-2.12.0.tgz", + "integrity": "sha512-LyOuvYdhbUScmA4iDgV3LxA0HzY1DnOwQUy3NrPYO393S2YwdDjdwMod6Btq7EBUjg9FVIh+sZRizgV5elV2dg==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/matteobruni" + }, + { + "type": "github", + "url": "https://github.com/sponsors/tsparticles" + }, + { + "type": "buymeacoffee", + "url": "https://www.buymeacoffee.com/matteobruni" + } + ], + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-plugin-absorbers": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-plugin-absorbers/-/tsparticles-plugin-absorbers-2.12.0.tgz", + "integrity": "sha512-2CkPreaXHrE5VzFlxUKLeRB5t66ff+3jwLJoDFgQcp+R4HOEITo0bBZv2DagGP0QZdYN4grpnQzRBVdB4d1rWA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-plugin-easing-quad": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-plugin-easing-quad/-/tsparticles-plugin-easing-quad-2.12.0.tgz", + "integrity": "sha512-2mNqez5pydDewMIUWaUhY5cNQ80IUOYiujwG6qx9spTq1D6EEPLbRNAEL8/ecPdn2j1Um3iWSx6lo340rPkv4Q==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/matteobruni" + }, + { + "type": "github", + "url": "https://github.com/sponsors/tsparticles" + }, + { + "type": "buymeacoffee", + "url": "https://www.buymeacoffee.com/matteobruni" + } + ], + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-plugin-emitters": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-plugin-emitters/-/tsparticles-plugin-emitters-2.12.0.tgz", + "integrity": "sha512-fbskYnaXWXivBh9KFReVCfqHdhbNQSK2T+fq2qcGEWpwtDdgujcaS1k2Q/xjZnWNMfVesik4IrqspcL51gNdSA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-plugin-polygon-mask": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-plugin-polygon-mask/-/tsparticles-plugin-polygon-mask-2.12.0.tgz", + "integrity": "sha512-6oUyDD5xRlr2D5qMv8QCspKVoYkTAxLrmAuzx+VUGJt9BPz/Bza15Uy3F17k0vCbJLbObXVaDt/O7Mabt5yQBw==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-shape-circle": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-circle/-/tsparticles-shape-circle-2.12.0.tgz", + "integrity": "sha512-L6OngbAlbadG7b783x16ns3+SZ7i0SSB66M8xGa5/k+YcY7zm8zG0uPt1Hd+xQDR2aNA3RngVM10O23/Lwk65Q==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-shape-image": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-image/-/tsparticles-shape-image-2.12.0.tgz", + "integrity": "sha512-iCkSdUVa40DxhkkYjYuYHr9MJGVw+QnQuN5UC+e/yBgJQY+1tQL8UH0+YU/h0GHTzh5Sm+y+g51gOFxHt1dj7Q==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-shape-line": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-line/-/tsparticles-shape-line-2.12.0.tgz", + "integrity": "sha512-RcpKmmpKlk+R8mM5wA2v64Lv1jvXtU4SrBDv3vbdRodKbKaWGGzymzav1Q0hYyDyUZgplEK/a5ZwrfrOwmgYGA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-shape-polygon": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-polygon/-/tsparticles-shape-polygon-2.12.0.tgz", + "integrity": "sha512-5YEy7HVMt1Obxd/jnlsjajchAlYMr9eRZWN+lSjcFSH6Ibra7h59YuJVnwxOxAobpijGxsNiBX0PuGQnB47pmA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-shape-square": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-square/-/tsparticles-shape-square-2.12.0.tgz", + "integrity": "sha512-33vfajHqmlODKaUzyPI/aVhnAOT09V7nfEPNl8DD0cfiNikEuPkbFqgJezJuE55ebtVo7BZPDA9o7GYbWxQNuw==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-shape-star": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-star/-/tsparticles-shape-star-2.12.0.tgz", + "integrity": "sha512-4sfG/BBqm2qBnPLASl2L5aBfCx86cmZLXeh49Un+TIR1F5Qh4XUFsahgVOG0vkZQa+rOsZPEH04xY5feWmj90g==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-shape-text": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-text/-/tsparticles-shape-text-2.12.0.tgz", + "integrity": "sha512-v2/FCA+hyTbDqp2ymFOe97h/NFb2eezECMrdirHWew3E3qlvj9S/xBibjbpZva2gnXcasBwxn0+LxKbgGdP0rA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-slim": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-slim/-/tsparticles-slim-2.12.0.tgz", + "integrity": "sha512-27w9aGAAAPKHvP4LHzWFpyqu7wKyulayyaZ/L6Tuuejy4KP4BBEB4rY5GG91yvAPsLtr6rwWAn3yS+uxnBDpkA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/matteobruni" + }, + { + "type": "github", + "url": "https://github.com/sponsors/tsparticles" + }, + { + "type": "buymeacoffee", + "url": "https://www.buymeacoffee.com/matteobruni" + } + ], + "dependencies": { + "tsparticles-basic": "^2.12.0", + "tsparticles-engine": "^2.12.0", + "tsparticles-interaction-external-attract": "^2.12.0", + "tsparticles-interaction-external-bounce": "^2.12.0", + "tsparticles-interaction-external-bubble": "^2.12.0", + "tsparticles-interaction-external-connect": "^2.12.0", + "tsparticles-interaction-external-grab": "^2.12.0", + "tsparticles-interaction-external-pause": "^2.12.0", + "tsparticles-interaction-external-push": "^2.12.0", + "tsparticles-interaction-external-remove": "^2.12.0", + "tsparticles-interaction-external-repulse": "^2.12.0", + "tsparticles-interaction-external-slow": "^2.12.0", + "tsparticles-interaction-particles-attract": "^2.12.0", + "tsparticles-interaction-particles-collisions": "^2.12.0", + "tsparticles-interaction-particles-links": "^2.12.0", + "tsparticles-move-base": "^2.12.0", + "tsparticles-move-parallax": "^2.12.0", + "tsparticles-particles.js": "^2.12.0", + "tsparticles-plugin-easing-quad": "^2.12.0", + "tsparticles-shape-circle": "^2.12.0", + "tsparticles-shape-image": "^2.12.0", + "tsparticles-shape-line": "^2.12.0", + "tsparticles-shape-polygon": "^2.12.0", + "tsparticles-shape-square": "^2.12.0", + "tsparticles-shape-star": "^2.12.0", + "tsparticles-shape-text": "^2.12.0", + "tsparticles-updater-color": "^2.12.0", + "tsparticles-updater-life": "^2.12.0", + "tsparticles-updater-opacity": "^2.12.0", + "tsparticles-updater-out-modes": "^2.12.0", + "tsparticles-updater-rotate": "^2.12.0", + "tsparticles-updater-size": "^2.12.0", + "tsparticles-updater-stroke-color": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-color": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-color/-/tsparticles-updater-color-2.12.0.tgz", + "integrity": "sha512-KcG3a8zd0f8CTiOrylXGChBrjhKcchvDJjx9sp5qpwQK61JlNojNCU35xoaSk2eEHeOvFjh0o3CXWUmYPUcBTQ==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-life": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-life/-/tsparticles-updater-life-2.12.0.tgz", + "integrity": "sha512-J7RWGHAZkowBHpcLpmjKsxwnZZJ94oGEL2w+wvW1/+ZLmAiFFF6UgU0rHMC5CbHJT4IPx9cbkYMEHsBkcRJ0Bw==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-opacity": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-opacity/-/tsparticles-updater-opacity-2.12.0.tgz", + "integrity": "sha512-YUjMsgHdaYi4HN89LLogboYcCi1o9VGo21upoqxq19yRy0hRCtx2NhH22iHF/i5WrX6jqshN0iuiiNefC53CsA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-out-modes": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-out-modes/-/tsparticles-updater-out-modes-2.12.0.tgz", + "integrity": "sha512-owBp4Gk0JNlSrmp12XVEeBroDhLZU+Uq3szbWlHGSfcR88W4c/0bt0FiH5bHUqORIkw+m8O56hCjbqwj69kpOQ==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-roll": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-roll/-/tsparticles-updater-roll-2.12.0.tgz", + "integrity": "sha512-dxoxY5jP4C9x15BxlUv5/Q8OjUPBiE09ToXRyBxea9aEJ7/iMw6odvi1HuT0H1vTIfV7o1MYawjeCbMycvODKQ==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-rotate": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-rotate/-/tsparticles-updater-rotate-2.12.0.tgz", + "integrity": "sha512-waOFlGFmEZOzsQg4C4VSejNVXGf4dMf3fsnQrEROASGf1FCd8B6WcZau7JtXSTFw0OUGuk8UGz36ETWN72DkCw==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-size": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-size/-/tsparticles-updater-size-2.12.0.tgz", + "integrity": "sha512-B0yRdEDd/qZXCGDL/ussHfx5YJ9UhTqNvmS5X2rR2hiZhBAE2fmsXLeWkdtF2QusjPeEqFDxrkGiLOsh6poqRA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-stroke-color": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-stroke-color/-/tsparticles-updater-stroke-color-2.12.0.tgz", + "integrity": "sha512-MPou1ZDxsuVq6SN1fbX+aI5yrs6FyP2iPCqqttpNbWyL+R6fik1rL0ab/x02B57liDXqGKYomIbBQVP3zUTW1A==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-tilt": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-tilt/-/tsparticles-updater-tilt-2.12.0.tgz", + "integrity": "sha512-HDEFLXazE+Zw+kkKKAiv0Fs9D9sRP61DoCR6jZ36ipea6OBgY7V1Tifz2TSR1zoQkk57ER9+EOQbkSQO+YIPGQ==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-twinkle": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-twinkle/-/tsparticles-updater-twinkle-2.12.0.tgz", + "integrity": "sha512-JhK/DO4kTx7IFwMBP2EQY9hBaVVvFnGBvX21SQWcjkymmN1hZ+NdcgUtR9jr4jUiiSNdSl7INaBuGloVjWvOgA==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, + "node_modules/tsparticles-updater-wobble": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-wobble/-/tsparticles-updater-wobble-2.12.0.tgz", + "integrity": "sha512-85FIRl95ipD3jfIsQdDzcUC5PRMWIrCYqBq69nIy9P8rsNzygn+JK2n+P1VQZowWsZvk0mYjqb9OVQB21Lhf6Q==", + "deprecated": "starting from tsparticles v3 the packages are now moved to @tsparticles/package-name instead of tsparticles-package-name", + "dependencies": { + "tsparticles-engine": "^2.12.0" + } + }, "node_modules/tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", @@ -7342,6 +7878,14 @@ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==" }, + "react-tsparticles": { + "version": "2.12.2", + "resolved": "https://registry.npmjs.org/react-tsparticles/-/react-tsparticles-2.12.2.tgz", + "integrity": "sha512-/nrEbyL8UROXKIMXe+f+LZN2ckvkwV2Qa+GGe/H26oEIc+wq/ybSG9REDwQiSt2OaDQGu0MwmA4BKmkL6wAWcA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, "readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", @@ -7445,9 +7989,9 @@ } }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" }, "sharp": { "version": "0.30.7", @@ -7822,6 +8366,394 @@ } } }, + "tsparticles": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/tsparticles/-/tsparticles-2.0.6.tgz", + "integrity": "sha512-Q36YrIvDubgHJJsRYbRWlE05q1cpaLlc7L/Bi5VcfzkKVkdqSux0IMfulIMg13T32NN3Qc2jw3A8veMtIvOlCw==", + "requires": { + "tsparticles-engine": "^2.0.6", + "tsparticles-interaction-external-trail": "^2.0.6", + "tsparticles-plugin-absorbers": "^2.0.6", + "tsparticles-plugin-emitters": "^2.0.6", + "tsparticles-plugin-polygon-mask": "^2.0.6", + "tsparticles-slim": "^2.0.6", + "tsparticles-updater-roll": "^2.0.6", + "tsparticles-updater-tilt": "^2.0.6", + "tsparticles-updater-twinkle": "^2.0.6", + "tsparticles-updater-wobble": "^2.0.6" + } + }, + "tsparticles-basic": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-basic/-/tsparticles-basic-2.12.0.tgz", + "integrity": "sha512-pN6FBpL0UsIUXjYbiui5+IVsbIItbQGOlwyGV55g6IYJBgdTNXgFX0HRYZGE9ZZ9psEXqzqwLM37zvWnb5AG9g==", + "requires": { + "tsparticles-engine": "^2.12.0", + "tsparticles-move-base": "^2.12.0", + "tsparticles-shape-circle": "^2.12.0", + "tsparticles-updater-color": "^2.12.0", + "tsparticles-updater-opacity": "^2.12.0", + "tsparticles-updater-out-modes": "^2.12.0", + "tsparticles-updater-size": "^2.12.0" + } + }, + "tsparticles-engine": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-engine/-/tsparticles-engine-2.12.0.tgz", + "integrity": "sha512-ZjDIYex6jBJ4iMc9+z0uPe7SgBnmb6l+EJm83MPIsOny9lPpetMsnw/8YJ3xdxn8hV+S3myTpTN1CkOVmFv0QQ==" + }, + "tsparticles-interaction-external-attract": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-attract/-/tsparticles-interaction-external-attract-2.12.0.tgz", + "integrity": "sha512-0roC6D1QkFqMVomcMlTaBrNVjVOpyNzxIUsjMfshk2wUZDAvTNTuWQdUpmsLS4EeSTDN3rzlGNnIuuUQqyBU5w==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-external-bounce": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-bounce/-/tsparticles-interaction-external-bounce-2.12.0.tgz", + "integrity": "sha512-MMcqKLnQMJ30hubORtdq+4QMldQ3+gJu0bBYsQr9BsThsh8/V0xHc1iokZobqHYVP5tV77mbFBD8Z7iSCf0TMQ==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-external-bubble": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-bubble/-/tsparticles-interaction-external-bubble-2.12.0.tgz", + "integrity": "sha512-5kImCSCZlLNccXOHPIi2Yn+rQWTX3sEa/xCHwXW19uHxtILVJlnAweayc8+Zgmb7mo0DscBtWVFXHPxrVPFDUA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-external-connect": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-connect/-/tsparticles-interaction-external-connect-2.12.0.tgz", + "integrity": "sha512-ymzmFPXz6AaA1LAOL5Ihuy7YSQEW8MzuSJzbd0ES13U8XjiU3HlFqlH6WGT1KvXNw6WYoqrZt0T3fKxBW3/C3A==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-external-grab": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-grab/-/tsparticles-interaction-external-grab-2.12.0.tgz", + "integrity": "sha512-iQF/A947hSfDNqAjr49PRjyQaeRkYgTYpfNmAf+EfME8RsbapeP/BSyF6mTy0UAFC0hK2A2Hwgw72eT78yhXeQ==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-external-pause": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-pause/-/tsparticles-interaction-external-pause-2.12.0.tgz", + "integrity": "sha512-4SUikNpsFROHnRqniL+uX2E388YTtfRWqqqZxRhY0BrijH4z04Aii3YqaGhJxfrwDKkTQlIoM2GbFT552QZWjw==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-external-push": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-push/-/tsparticles-interaction-external-push-2.12.0.tgz", + "integrity": "sha512-kqs3V0dgDKgMoeqbdg+cKH2F+DTrvfCMrPF1MCCUpBCqBiH+TRQpJNNC86EZYHfNUeeLuIM3ttWwIkk2hllR/Q==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-external-remove": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-remove/-/tsparticles-interaction-external-remove-2.12.0.tgz", + "integrity": "sha512-2eNIrv4m1WB2VfSVj46V2L/J9hNEZnMgFc+A+qmy66C8KzDN1G8aJUAf1inW8JVc0lmo5+WKhzex4X0ZSMghBg==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-external-repulse": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-repulse/-/tsparticles-interaction-external-repulse-2.12.0.tgz", + "integrity": "sha512-rSzdnmgljeBCj5FPp4AtGxOG9TmTsK3AjQW0vlyd1aG2O5kSqFjR+FuT7rfdSk9LEJGH5SjPFE6cwbuy51uEWA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-external-slow": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-slow/-/tsparticles-interaction-external-slow-2.12.0.tgz", + "integrity": "sha512-2IKdMC3om7DttqyroMtO//xNdF0NvJL/Lx7LDo08VpfTgJJozxU+JAUT8XVT7urxhaDzbxSSIROc79epESROtA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-external-trail": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-external-trail/-/tsparticles-interaction-external-trail-2.12.0.tgz", + "integrity": "sha512-LKSapU5sPTaZqYx+y5VJClj0prlV7bswplSFQaIW1raXkvsk45qir2AVcpP5JUhZSFSG+SwsHr+qCgXhNeN1KA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-particles-attract": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-particles-attract/-/tsparticles-interaction-particles-attract-2.12.0.tgz", + "integrity": "sha512-Hl8qwuwF9aLq3FOkAW+Zomu7Gb8IKs6Y3tFQUQScDmrrSCaeRt2EGklAiwgxwgntmqzL7hbMWNx06CHHcUQKdQ==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-particles-collisions": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-particles-collisions/-/tsparticles-interaction-particles-collisions-2.12.0.tgz", + "integrity": "sha512-Se9nPWlyPxdsnHgR6ap4YUImAu3W5MeGKJaQMiQpm1vW8lSMOUejI1n1ioIaQth9weKGKnD9rvcNn76sFlzGBA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-interaction-particles-links": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-interaction-particles-links/-/tsparticles-interaction-particles-links-2.12.0.tgz", + "integrity": "sha512-e7I8gRs4rmKfcsHONXMkJnymRWpxHmeaJIo4g2NaDRjIgeb2AcJSWKWZvrsoLnm7zvaf/cMQlbN6vQwCixYq3A==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-move-base": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-move-base/-/tsparticles-move-base-2.12.0.tgz", + "integrity": "sha512-oSogCDougIImq+iRtIFJD0YFArlorSi8IW3HD2gO3USkH+aNn3ZqZNTqp321uB08K34HpS263DTbhLHa/D6BWw==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-move-parallax": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-move-parallax/-/tsparticles-move-parallax-2.12.0.tgz", + "integrity": "sha512-58CYXaX8Ih5rNtYhpnH0YwU4Ks7gVZMREGUJtmjhuYN+OFr9FVdF3oDIJ9N6gY5a5AnAKz8f5j5qpucoPRcYrQ==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-particles.js": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-particles.js/-/tsparticles-particles.js-2.12.0.tgz", + "integrity": "sha512-LyOuvYdhbUScmA4iDgV3LxA0HzY1DnOwQUy3NrPYO393S2YwdDjdwMod6Btq7EBUjg9FVIh+sZRizgV5elV2dg==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-plugin-absorbers": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-plugin-absorbers/-/tsparticles-plugin-absorbers-2.12.0.tgz", + "integrity": "sha512-2CkPreaXHrE5VzFlxUKLeRB5t66ff+3jwLJoDFgQcp+R4HOEITo0bBZv2DagGP0QZdYN4grpnQzRBVdB4d1rWA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-plugin-easing-quad": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-plugin-easing-quad/-/tsparticles-plugin-easing-quad-2.12.0.tgz", + "integrity": "sha512-2mNqez5pydDewMIUWaUhY5cNQ80IUOYiujwG6qx9spTq1D6EEPLbRNAEL8/ecPdn2j1Um3iWSx6lo340rPkv4Q==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-plugin-emitters": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-plugin-emitters/-/tsparticles-plugin-emitters-2.12.0.tgz", + "integrity": "sha512-fbskYnaXWXivBh9KFReVCfqHdhbNQSK2T+fq2qcGEWpwtDdgujcaS1k2Q/xjZnWNMfVesik4IrqspcL51gNdSA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-plugin-polygon-mask": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-plugin-polygon-mask/-/tsparticles-plugin-polygon-mask-2.12.0.tgz", + "integrity": "sha512-6oUyDD5xRlr2D5qMv8QCspKVoYkTAxLrmAuzx+VUGJt9BPz/Bza15Uy3F17k0vCbJLbObXVaDt/O7Mabt5yQBw==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-shape-circle": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-circle/-/tsparticles-shape-circle-2.12.0.tgz", + "integrity": "sha512-L6OngbAlbadG7b783x16ns3+SZ7i0SSB66M8xGa5/k+YcY7zm8zG0uPt1Hd+xQDR2aNA3RngVM10O23/Lwk65Q==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-shape-image": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-image/-/tsparticles-shape-image-2.12.0.tgz", + "integrity": "sha512-iCkSdUVa40DxhkkYjYuYHr9MJGVw+QnQuN5UC+e/yBgJQY+1tQL8UH0+YU/h0GHTzh5Sm+y+g51gOFxHt1dj7Q==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-shape-line": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-line/-/tsparticles-shape-line-2.12.0.tgz", + "integrity": "sha512-RcpKmmpKlk+R8mM5wA2v64Lv1jvXtU4SrBDv3vbdRodKbKaWGGzymzav1Q0hYyDyUZgplEK/a5ZwrfrOwmgYGA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-shape-polygon": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-polygon/-/tsparticles-shape-polygon-2.12.0.tgz", + "integrity": "sha512-5YEy7HVMt1Obxd/jnlsjajchAlYMr9eRZWN+lSjcFSH6Ibra7h59YuJVnwxOxAobpijGxsNiBX0PuGQnB47pmA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-shape-square": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-square/-/tsparticles-shape-square-2.12.0.tgz", + "integrity": "sha512-33vfajHqmlODKaUzyPI/aVhnAOT09V7nfEPNl8DD0cfiNikEuPkbFqgJezJuE55ebtVo7BZPDA9o7GYbWxQNuw==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-shape-star": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-star/-/tsparticles-shape-star-2.12.0.tgz", + "integrity": "sha512-4sfG/BBqm2qBnPLASl2L5aBfCx86cmZLXeh49Un+TIR1F5Qh4XUFsahgVOG0vkZQa+rOsZPEH04xY5feWmj90g==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-shape-text": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-shape-text/-/tsparticles-shape-text-2.12.0.tgz", + "integrity": "sha512-v2/FCA+hyTbDqp2ymFOe97h/NFb2eezECMrdirHWew3E3qlvj9S/xBibjbpZva2gnXcasBwxn0+LxKbgGdP0rA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-slim": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-slim/-/tsparticles-slim-2.12.0.tgz", + "integrity": "sha512-27w9aGAAAPKHvP4LHzWFpyqu7wKyulayyaZ/L6Tuuejy4KP4BBEB4rY5GG91yvAPsLtr6rwWAn3yS+uxnBDpkA==", + "requires": { + "tsparticles-basic": "^2.12.0", + "tsparticles-engine": "^2.12.0", + "tsparticles-interaction-external-attract": "^2.12.0", + "tsparticles-interaction-external-bounce": "^2.12.0", + "tsparticles-interaction-external-bubble": "^2.12.0", + "tsparticles-interaction-external-connect": "^2.12.0", + "tsparticles-interaction-external-grab": "^2.12.0", + "tsparticles-interaction-external-pause": "^2.12.0", + "tsparticles-interaction-external-push": "^2.12.0", + "tsparticles-interaction-external-remove": "^2.12.0", + "tsparticles-interaction-external-repulse": "^2.12.0", + "tsparticles-interaction-external-slow": "^2.12.0", + "tsparticles-interaction-particles-attract": "^2.12.0", + "tsparticles-interaction-particles-collisions": "^2.12.0", + "tsparticles-interaction-particles-links": "^2.12.0", + "tsparticles-move-base": "^2.12.0", + "tsparticles-move-parallax": "^2.12.0", + "tsparticles-particles.js": "^2.12.0", + "tsparticles-plugin-easing-quad": "^2.12.0", + "tsparticles-shape-circle": "^2.12.0", + "tsparticles-shape-image": "^2.12.0", + "tsparticles-shape-line": "^2.12.0", + "tsparticles-shape-polygon": "^2.12.0", + "tsparticles-shape-square": "^2.12.0", + "tsparticles-shape-star": "^2.12.0", + "tsparticles-shape-text": "^2.12.0", + "tsparticles-updater-color": "^2.12.0", + "tsparticles-updater-life": "^2.12.0", + "tsparticles-updater-opacity": "^2.12.0", + "tsparticles-updater-out-modes": "^2.12.0", + "tsparticles-updater-rotate": "^2.12.0", + "tsparticles-updater-size": "^2.12.0", + "tsparticles-updater-stroke-color": "^2.12.0" + } + }, + "tsparticles-updater-color": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-color/-/tsparticles-updater-color-2.12.0.tgz", + "integrity": "sha512-KcG3a8zd0f8CTiOrylXGChBrjhKcchvDJjx9sp5qpwQK61JlNojNCU35xoaSk2eEHeOvFjh0o3CXWUmYPUcBTQ==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-updater-life": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-life/-/tsparticles-updater-life-2.12.0.tgz", + "integrity": "sha512-J7RWGHAZkowBHpcLpmjKsxwnZZJ94oGEL2w+wvW1/+ZLmAiFFF6UgU0rHMC5CbHJT4IPx9cbkYMEHsBkcRJ0Bw==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-updater-opacity": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-opacity/-/tsparticles-updater-opacity-2.12.0.tgz", + "integrity": "sha512-YUjMsgHdaYi4HN89LLogboYcCi1o9VGo21upoqxq19yRy0hRCtx2NhH22iHF/i5WrX6jqshN0iuiiNefC53CsA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-updater-out-modes": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-out-modes/-/tsparticles-updater-out-modes-2.12.0.tgz", + "integrity": "sha512-owBp4Gk0JNlSrmp12XVEeBroDhLZU+Uq3szbWlHGSfcR88W4c/0bt0FiH5bHUqORIkw+m8O56hCjbqwj69kpOQ==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-updater-roll": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-roll/-/tsparticles-updater-roll-2.12.0.tgz", + "integrity": "sha512-dxoxY5jP4C9x15BxlUv5/Q8OjUPBiE09ToXRyBxea9aEJ7/iMw6odvi1HuT0H1vTIfV7o1MYawjeCbMycvODKQ==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-updater-rotate": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-rotate/-/tsparticles-updater-rotate-2.12.0.tgz", + "integrity": "sha512-waOFlGFmEZOzsQg4C4VSejNVXGf4dMf3fsnQrEROASGf1FCd8B6WcZau7JtXSTFw0OUGuk8UGz36ETWN72DkCw==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-updater-size": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-size/-/tsparticles-updater-size-2.12.0.tgz", + "integrity": "sha512-B0yRdEDd/qZXCGDL/ussHfx5YJ9UhTqNvmS5X2rR2hiZhBAE2fmsXLeWkdtF2QusjPeEqFDxrkGiLOsh6poqRA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-updater-stroke-color": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-stroke-color/-/tsparticles-updater-stroke-color-2.12.0.tgz", + "integrity": "sha512-MPou1ZDxsuVq6SN1fbX+aI5yrs6FyP2iPCqqttpNbWyL+R6fik1rL0ab/x02B57liDXqGKYomIbBQVP3zUTW1A==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-updater-tilt": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-tilt/-/tsparticles-updater-tilt-2.12.0.tgz", + "integrity": "sha512-HDEFLXazE+Zw+kkKKAiv0Fs9D9sRP61DoCR6jZ36ipea6OBgY7V1Tifz2TSR1zoQkk57ER9+EOQbkSQO+YIPGQ==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-updater-twinkle": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-twinkle/-/tsparticles-updater-twinkle-2.12.0.tgz", + "integrity": "sha512-JhK/DO4kTx7IFwMBP2EQY9hBaVVvFnGBvX21SQWcjkymmN1hZ+NdcgUtR9jr4jUiiSNdSl7INaBuGloVjWvOgA==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, + "tsparticles-updater-wobble": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/tsparticles-updater-wobble/-/tsparticles-updater-wobble-2.12.0.tgz", + "integrity": "sha512-85FIRl95ipD3jfIsQdDzcUC5PRMWIrCYqBq69nIy9P8rsNzygn+JK2n+P1VQZowWsZvk0mYjqb9OVQB21Lhf6Q==", + "requires": { + "tsparticles-engine": "^2.12.0" + } + }, "tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", diff --git a/pages/404.js b/pages/404.js index 534634f..1de4040 100644 --- a/pages/404.js +++ b/pages/404.js @@ -1,10 +1,8 @@ import React from 'react'; -import ParticleBackground from '../assets/christmas_theme/ParticlesBg'; function Custom404() { return (
-

404

Not Found

diff --git a/pages/about.js b/pages/about.js index deae468..e2d6c4c 100644 --- a/pages/about.js +++ b/pages/about.js @@ -2,7 +2,6 @@ import Head from 'next/head'; import Events from '../components/event/Events'; import Screen from '../components/screen/Screen'; import BottomGlitter from '../components/StyledText/BottomGlitter'; -import ParticleBackground from '../assets/christmas_theme/ParticlesBg'; function About() { return ( @@ -18,7 +17,6 @@ function About() { content="HTML, CSS, JavaScript, ReactJS, NextJS, TailwindCSS, HnCC, About HnCC, Hackathon & Coding Club, BIT Sindri, Dhanbad" /> -

diff --git a/pages/alumni.js b/pages/alumni.js index 4ca8dad..b0ccb2d 100644 --- a/pages/alumni.js +++ b/pages/alumni.js @@ -9,7 +9,6 @@ import { TeamData2k18, TeamData2k19, } from '../lib/data/AlumniData'; -import ParticleBackground from '../assets/christmas_theme/ParticlesBg'; function Alumni() { return ( @@ -25,7 +24,6 @@ function Alumni() { content="HTML, CSS, JavaScript, ReactJS, NextJS, TailwindCSS, HnCC, Team of HnCC, Hackathon & Coding Club, BIT Sindri, Dhanbad" /> -

@@ -70,7 +68,7 @@ function Alumni() {

Batch 2K18

- {TeamData2k18.slice(0, 24).map((item, index) => { + {TeamData2k18.map((item, index) => { return ( Batch 2K19
- {TeamData2k19.slice(0, 24).map((item, index) => { + {TeamData2k19.map((item, index) => { return ( -
diff --git a/pages/events.js b/pages/events.js index c3f4d19..363d8cf 100644 --- a/pages/events.js +++ b/pages/events.js @@ -7,7 +7,6 @@ import BottomGlitter from '@/components/StyledText/BottomGlitter'; import styles from '@/styles/events.module.css'; import AnimatedScrollButton from '@/components/AnimatedScrollButton'; import EventsData from '../lib/data/EventsData'; -import ParticleBackground from '../assets/christmas_theme/ParticlesBg'; function Events() { useEffect(() => { @@ -76,7 +75,6 @@ function Events() { content="HTML, CSS, JavaScript, ReactJS, NextJS, TailwindCSS, HnCC, Events of HnCC, Hackathon & Coding Club, BIT Sindri, Dhanbad" /> -
diff --git a/pages/faqs.js b/pages/faqs.js index a07382a..e71e040 100644 --- a/pages/faqs.js +++ b/pages/faqs.js @@ -6,7 +6,6 @@ import { BsChevronRight } from 'react-icons/bs'; import Screen from '../components/screen/Screen'; import options from '../lib/data/FaqData'; import styles from '../styles/faq.module.css'; -import ParticleBackground from '../assets/christmas_theme/ParticlesBg'; function FAQs() { useEffect(() => { @@ -65,7 +64,6 @@ function FAQs() { content="HTML, CSS, JavaScript, ReactJS, NextJS, TailwindCSS, HnCC, Frequently Asked Question, FAQs, Hackathon & Coding Club, BIT Sindri, Dhanbad" /> -

diff --git a/pages/index.js b/pages/index.js index 66a7311..56b7ccb 100644 --- a/pages/index.js +++ b/pages/index.js @@ -8,7 +8,6 @@ import Screen from '../components/screen/Screen'; import Sponsors from '../components/sponsors/Sponsors'; import TechStack from '../components/techStack/TechStack'; import Video from '../components/video/Video'; -import ParticleBackground from '../assets/christmas_theme/ParticlesBg'; export default function Home() { return ( @@ -25,7 +24,6 @@ export default function Home() { content="HTML, CSS, JavaScript, ReactJS, NextJS, TailwindCSS, HnCC, Hackathon & Coding Club, BIT Sindri, Dhanbad" /> -