diff --git a/web/app/team/page.tsx b/web/app/team/page.tsx
index 4444164..9990f55 100644
--- a/web/app/team/page.tsx
+++ b/web/app/team/page.tsx
@@ -1,327 +1,357 @@
-'use client';
-import React, { useEffect, useRef, useState } from 'react';
-import Navbar from '@/components/Navbar';
-import TeamCardForGrid from '@/components/TeamCardForGrid';
-import team_members_board from '@/content/team_members_board.json';
-import team_members_technical from '@/content/team_members.json';
-import team_members_design from '@/content/team_members_design.json';
-import team_members_managers from '@/content/team_members_managers.json';
-import Footer from '@/components/Footer';
+"use client";
+import React, { useEffect, useRef, useState } from "react";
+import Navbar from "@/components/Navbar";
+import TeamCardForGrid from "@/components/TeamCardForGrid";
+import team_members_board from "@/content/team_members_board.json";
+import team_members_technical from "@/content/team_members.json";
+import team_members_design from "@/content/team_members_design.json";
+import team_members_managers from "@/content/team_members_managers.json";
+import Footer from "@/components/Footer";
import {
- motion,
- useMotionValueEvent,
- useScroll,
- useTransform,
-} from 'framer-motion';
+ motion,
+ useMotionValueEvent,
+ useScroll,
+ useTransform,
+} from "framer-motion";
export default function Team() {
- const mainRef = useRef(null);
+ const mainRef = useRef(null);
- const { scrollYProgress } = useScroll({ container: mainRef });
- const scaleTransform = useTransform(scrollYProgress, [0, 0.08], [2, 1]);
- const leftTransform = useTransform(scrollYProgress, [0, 0.08], ['37%', '3%']);
- const topTransform = useTransform(scrollYProgress, [0, 0.08], ['35%', '13%']);
- // opacityTransform for full opacity for 90% of path, then fade out
- const opacityTransform = useTransform(scrollYProgress, [0.8, 1.0], [1, 0]);
- const arrowOpacityTransform = useTransform(
- scrollYProgress,
- [0.0, 0.03],
- [1, 0]
- );
- const hiddenTransform = useTransform(
- scrollYProgress,
- [0.03, 0.031],
- ['flex', 'hidden']
- );
- const fadeTransform = useTransform(
- scrollYProgress,
- [0.4, 0.41],
- ['none', 'block']
- );
+ const { scrollYProgress } = useScroll({ container: mainRef });
+ const scaleTransform = useTransform(scrollYProgress, [0, 0.08], [2, 1]);
+ const leftTransform = useTransform(
+ scrollYProgress,
+ [0, 0.08],
+ ["37%", "3%"]
+ );
+ const topTransform = useTransform(
+ scrollYProgress,
+ [0, 0.08],
+ ["35%", "13%"]
+ );
+ // opacityTransform for full opacity for 90% of path, then fade out
+ const opacityTransform = useTransform(scrollYProgress, [0.8, 1.0], [1, 0]);
+ const arrowOpacityTransform = useTransform(
+ scrollYProgress,
+ [0.0, 0.03],
+ [1, 0]
+ );
+ const hiddenTransform = useTransform(
+ scrollYProgress,
+ [0.03, 0.031],
+ ["flex", "hidden"]
+ );
+ const fadeTransform = useTransform(
+ scrollYProgress,
+ [0.4, 0.41],
+ ["none", "block"]
+ );
- const [hookedYPostion, setHookedYPosition] = React.useState(0);
- useMotionValueEvent(scrollYProgress, 'change', (latest) => {
- setHookedYPosition(latest);
- });
+ const [hookedYPostion, setHookedYPosition] = React.useState(0);
+ useMotionValueEvent(scrollYProgress, "change", (latest) => {
+ setHookedYPosition(latest);
+ });
- const [curTab, setCurTab] = useState('');
+ const [curTab, setCurTab] = useState("");
- const scrollOptions = (section: string) => {
- const sectionElement = document.querySelector(`#${section}`);
- // console.log(sectionElement)
- // scroll to sectionElement
- if (sectionElement) {
- sectionElement.scrollIntoView({ behavior: 'smooth' });
- }
- };
+ const scrollOptions = (section: string) => {
+ const sectionElement = document.querySelector(`#${section}`);
+ // console.log(sectionElement)
+ // scroll to sectionElement
+ if (sectionElement) {
+ sectionElement.scrollIntoView({ behavior: "smooth" });
+ }
+ };
- useEffect(() => {
- // Define an observer function
- const handleIntersection: IntersectionObserverCallback = (
- entries: IntersectionObserverEntry[]
- ) => {
- entries.forEach((entry) => {
- if (entry.isIntersecting) {
- // Update curTab based on the section in view
- setCurTab(entry.target.id);
- }
- });
- };
+ useEffect(() => {
+ // Define an observer function
+ const handleIntersection: IntersectionObserverCallback = (
+ entries: IntersectionObserverEntry[]
+ ) => {
+ entries.forEach((entry) => {
+ if (entry.isIntersecting) {
+ // Update curTab based on the section in view
+ setCurTab(entry.target.id);
+ }
+ });
+ };
- // Create an Intersection Observer
- const observer = new IntersectionObserver(handleIntersection, {
- root: mainRef.current,
- rootMargin: '0px',
- threshold: 0.5, // Adjust the threshold as needed
- });
+ // Create an Intersection Observer
+ const observer = new IntersectionObserver(handleIntersection, {
+ root: mainRef.current,
+ rootMargin: "0px",
+ threshold: 0.5, // Adjust the threshold as needed
+ });
- // Observe the sections
- const sections = ['Board', 'Technical', 'Design', 'Managers'];
- sections.forEach((section) => {
- const sectionElement = document.querySelector(`#${section}`);
- if (sectionElement) {
- observer.observe(sectionElement);
- }
- });
+ // Observe the sections
+ const sections = ["Board", "Technical", "Design", "Managers"];
+ sections.forEach((section) => {
+ const sectionElement = document.querySelector(`#${section}`);
+ if (sectionElement) {
+ observer.observe(sectionElement);
+ }
+ });
- return () => {
- // Clean up the observer when the component unmounts
- observer.disconnect();
- };
- }, [mainRef]);
+ return () => {
+ // Clean up the observer when the component unmounts
+ observer.disconnect();
+ };
+ }, [mainRef]);
- return (
-
-
-
-
-
- Meet The Team
-
-
- We’ve got a strong team filled with caffeine addicted developers,
- gradients loving designers, and machine-like working managers.
-
-
-
scrollOptions('Board')}
- className={`w-fit pointer-events-auto ${
- curTab === 'Board'
- ? 'text-yellow underline underline-offset-4 team-tab-after'
- : 'text-grey'
- } hover:text-yellow cursor-pointer`}
- >
- Board
-
-
scrollOptions('Technical')}
- className={`w-fit pointer-events-auto ${
- curTab === 'Technical'
- ? 'text-pastel_green underline underline-offset-4 team-tab-after'
- : 'text-grey'
- } hover:text-pastel_green cursor-pointer`}
- >
- Techies
-
-
scrollOptions('Design')}
- className={`w-fit pointer-events-auto ${
- curTab === 'Design'
- ? 'text-pastel_blue underline underline-offset-4 team-tab-after'
- : 'text-grey'
- } hover:text-pastel_blue cursor-pointer`}
- >
- Designers
-
-
scrollOptions('Managers')}
- className={`w-fit pointer-events-auto ${
- curTab === 'Managers'
- ? 'text-pastel_red underline underline-offset-4 team-tab-after'
- : 'text-grey'
- } hover:text-pastel_red cursor-pointer`}
- >
- Managers
-
-
- {/* down arrow symbol, centred, use html symbol */}
-
- scrollOptions('Board')}
- className="hover:cursor-pointer text-grey text-2xl animate-bounce pointer-events-auto"
- >
- ⌄
-
-
-
-
-
-
-
- Meet The Team
-
-
- We’ve got a strong team filled with caffeine addicted developers,
- gradients loving designers, and machine-like working managers.
-
-
-
scrollOptions('Board')}
- className={`w-fit ${
- curTab === 'Board'
- ? 'text-yellow underline underline-offset-4 team-tab-after'
- : 'text-grey'
- } hover:text-yellow cursor-pointer`}
- >
- Board
-
-
scrollOptions('Technical')}
- className={`w-fit ${
- curTab === 'Technical'
- ? 'text-pastel_green underline underline-offset-4 team-tab-after'
- : 'text-grey'
- } hover:text-pastel_green cursor-pointer`}
- >
- Techies
-
-
scrollOptions('Design')}
- className={`w-fit ${
- curTab === 'Design'
- ? 'text-pastel_blue underline underline-offset-4 team-tab-after'
- : 'text-grey'
- } hover:text-pastel_blue cursor-pointer`}
- >
- Designers
-
-
scrollOptions('Managers')}
- className={`w-fit ${
- curTab === 'Managers'
- ? 'text-pastel_red underline underline-offset-4 team-tab-after'
- : 'text-grey'
- } hover:text-pastel_red cursor-pointer`}
- >
- Managers
-
-
-
-
-
-
-
-
- Board
-
-
- {team_members_board.map((mem, i) => (
-
- ))}
-
-
-
-
- Techies
-
-
- {team_members_technical.map((mem, i) => (
-
- ))}
-
-
-
-
- Designers
-
-
- {team_members_design.map((mem, i) => (
-
- ))}
-
-
-
-
- Managers
-
-
- {team_members_managers.map((mem, i) => (
-
- ))}
-
-
-
-
-
- );
+ return (
+
+
+
+
+
+ Meet The Team
+
+
+ We’ve got a strong team filled with caffeine addicted
+ developers, gradients loving designers, and machine-like
+ working managers.
+
+
+
scrollOptions("Board")}
+ className={`w-fit pointer-events-auto ${
+ curTab === "Board"
+ ? "text-yellow underline underline-offset-4 team-tab-after"
+ : "text-grey"
+ } hover:text-yellow cursor-pointer`}
+ >
+ Board
+
+
scrollOptions("Technical")}
+ className={`w-fit pointer-events-auto ${
+ curTab === "Technical"
+ ? "text-pastel_green underline underline-offset-4 team-tab-after"
+ : "text-grey"
+ } hover:text-pastel_green cursor-pointer`}
+ >
+ Techies
+
+
scrollOptions("Design")}
+ className={`w-fit pointer-events-auto ${
+ curTab === "Design"
+ ? "text-pastel_blue underline underline-offset-4 team-tab-after"
+ : "text-grey"
+ } hover:text-pastel_blue cursor-pointer`}
+ >
+ Designers
+
+
scrollOptions("Managers")}
+ className={`w-fit pointer-events-auto ${
+ curTab === "Managers"
+ ? "text-pastel_red underline underline-offset-4 team-tab-after"
+ : "text-grey"
+ } hover:text-pastel_red cursor-pointer`}
+ >
+ Managers
+
+
+ {/* down arrow symbol, centred, use html symbol */}
+
+ scrollOptions("Board")}
+ className="hover:cursor-pointer text-grey text-2xl animate-bounce pointer-events-auto"
+ >
+ ⌄
+
+
+
+
+
+
+
+ Meet The Team
+
+
+ We’ve got a strong team filled with caffeine
+ addicted developers, gradients loving designers, and
+ machine-like working managers.
+
+
+
scrollOptions("Board")}
+ className={`w-fit ${
+ curTab === "Board"
+ ? "text-yellow underline underline-offset-4 team-tab-after"
+ : "text-grey"
+ } hover:text-yellow cursor-pointer`}
+ >
+ Board
+
+
scrollOptions("Technical")}
+ className={`w-fit ${
+ curTab === "Technical"
+ ? "text-pastel_green underline underline-offset-4 team-tab-after"
+ : "text-grey"
+ } hover:text-pastel_green cursor-pointer`}
+ >
+ Techies
+
+
scrollOptions("Design")}
+ className={`w-fit ${
+ curTab === "Design"
+ ? "text-pastel_blue underline underline-offset-4 team-tab-after"
+ : "text-grey"
+ } hover:text-pastel_blue cursor-pointer`}
+ >
+ Designers
+
+
scrollOptions("Managers")}
+ className={`w-fit ${
+ curTab === "Managers"
+ ? "text-pastel_red underline underline-offset-4 team-tab-after"
+ : "text-grey"
+ } hover:text-pastel_red cursor-pointer`}
+ >
+ Managers
+
+
+
+
+
+
+
+
+ Board
+
+
+ {team_members_board.map((mem, i) => (
+
+ ))}
+
+
+
+
+ Techies
+
+
+ {team_members_technical.map((mem, i) => (
+
+ ))}
+
+
+
+
+ Designers
+
+
+ {team_members_design.map((mem, i) => (
+
+ ))}
+
+
+
+
+ Managers
+
+
+ {team_members_managers.map((mem, i) => (
+
+ ))}
+
+
+
+
+
+ );
}
diff --git a/web/components/TeamCardForGrid.tsx b/web/components/TeamCardForGrid.tsx
index 32bae75..f0a28c6 100644
--- a/web/components/TeamCardForGrid.tsx
+++ b/web/components/TeamCardForGrid.tsx
@@ -1,50 +1,69 @@
-import React from 'react'
-import Image from 'next/image'
-import Card from './Card'
-import Icon from './Icons'
+import React from "react";
+import Image from "next/image";
+import Card from "./Card";
+import Icon from "./Icons";
type Props = {
- img: string
- title: string
- subtitle?: string;
- i: number;
- github?: string;
- linkedin?: string;
- link?: string;
-}
+ img: string;
+ title: string;
+ subtitle?: string;
+ i: number;
+ github?: string;
+ linkedin?: string;
+ link?: string;
+};
-const TeamCardForGrid = ({ img, title, subtitle, i, github, link, linkedin }: Props) => {
- return (
-
-
-
- {title}
-
-
- {subtitle}
-
-
- {link ?
-
- : null}
- {github ?
-
- : null}
- {linkedin ?
-
- : null}
-
-
- )
-}
-export default TeamCardForGrid
+const TeamCardForGrid = ({
+ img,
+ title,
+ subtitle,
+ i,
+ github,
+ link,
+ linkedin,
+}: Props) => {
+ return (
+
+
+
+ {title}
+
+
{subtitle}
+
+ {link ? (
+
+ ) : null}
+ {github ? (
+
+ ) : null}
+ {linkedin ? (
+
+ ) : null}
+
+
+ );
+};
+export default TeamCardForGrid;
diff --git a/web/content/team_members.json b/web/content/team_members.json
index 9ded956..df0de65 100644
--- a/web/content/team_members.json
+++ b/web/content/team_members.json
@@ -1,155 +1,202 @@
[
- {
- "name": "Anuj Parihar",
- "position": "Backend and Security",
- "img": "/team/technical/anuj.jpeg",
- "github":"https://github.com/bearts",
- "linkedin":"https://www.linkedin.com/in/anujpflash/"
- },
- {
- "name": "Dhruv Shah",
- "position": "Backend",
- "img": "/team/technical/dhruv.jpeg",
- "github":"https://github.com/Dhruv9449",
- "linkedin":"https://www.linkedin.com/in/dhruv9449/"
- },
- {
- "name":"Anirudh Mishra",
- "position":"Full Stack",
- "img":"/team/technical/anirudh.jpeg",
- "github":"https://github.com/anirudhgray",
- "linkedin":"https://www.linkedin.com/in/anirudh-mishra/"
- },
- {
- "name":"Vignesh Natarajan",
- "position":"Backend",
- "img":"/team/technical/vignesh.jpeg",
- "linkedin":"https://www.linkedin.com/in/0x5b",
- "github":"https://github.com/0x5b-5245444143544544-5d"
- },
- {
- "name": "Rudrank Basant",
- "position": "App and Backend",
- "img": "/team/technical/rudrank.jpeg",
- "linkedin":"https://www.linkedin.com/in/rudrankbasant/",
- "github":"https://github.com/rudrankbasant"
- },
- {
- "name": "Sayar Bhattacharyya",
- "position": "Frontend",
- "img": "/team/technical/sayar.jpeg",
- "github":"https://github.com/SayarB",
- "linkedin":"https://www.linkedin.com/in/sayar-bhattacharyya/"
- },
- {
- "name": "Prashanna Rajbhandari",
- "position": "App",
- "img": "/team/technical/prashanna.jpg",
- "github":"https://github.com/PrashannaR",
- "linkedin":"https://www.linkedin.com/in/prashannar/"
- },
- {
- "name": "Ameya Kore",
- "position": "Full Stack",
- "img": "/team/technical/ameya.jpeg",
- "linkedin":"https://www.linkedin.com/in/ameya-kore-925620239/"
- },
- {
- "name": "Sankhayan Bhattacharjee",
- "position": "Full Stack and Game",
- "img": "/team/technical/sankhayan.jpeg",
- "github":"https://github.com/Lioncat2002",
- "linkedin":"https://www.linkedin.com/in/sankhayan-bhattacharjee-996336220/"
- },
- {
- "name":"Abhijeet Bhardwaj",
- "position":"App",
- "img":"/team/technical/abhijeet.jpeg",
- "github":"https://github.com/abhijeet-Bh",
- "linkedin":"https://www.linkedin.com/in/abhijeet-bh/"
- },
- {
- "name": "John Tony",
- "position": "Backend",
- "img": "/team/technical/john.jpeg",
- "github":"https://github.com/johntony366",
- "linkedin":"https://www.linkedin.com/in/johntony366/"
- },
- {
- "name": "Chandram Dutta",
- "position": "App",
- "img": "/team/technical/chandram.jpeg",
- "github":"https://github.com/Chandram-Dutta",
- "linkedin":"https://www.linkedin.com/in/chandramdutta/"
- },
- {
- "name": "Rounak Agrawal",
- "position": "App and Frontend",
- "img": "/team/technical/rounak.jpeg",
- "github":"https://github.com/userrounakk",
- "linkedin":"https://www.linkedin.com/in/userrounakk/"
- },
- {
- "name": "Pratham Gupta",
- "position": "Frontend",
- "img": "/team/technical/pratham.jpeg",
- "github":"https://github.com/SafeTorpedo"
- },
- {
- "name": "Aarabi",
- "position": "Python",
- "img": "/team/technical/aarabi.jpeg",
- "linkedin":"https://www.linkedin.com/in/aarabi-balakrishnan-88629b28a/"
- },
- {
- "name": "Aditya Chowdhary",
- "position": "Backend",
- "img": "/team/technical/aditya_chowdhary.jpeg",
- "github":"https://github.com/Aditya-Chowdhary"
- },
- {
- "name": "Dev Keshwani",
- "position": "App",
- "img": "/team/technical/dev.jpeg",
- "github":"https://github.com/dk-a-dev"
- },
- {
- "name": "Divyanshu Singh",
- "position": "Frontend",
- "img": "/team/technical/divyanshu.png",
- "github":"https://github.com/isinghdivyanshu",
- "linkedin":"https://www.linkedin.com/in/isinghdivyanshu/"
- },
- {
- "name": "Hari Govind",
- "position": "App and Security",
- "img": "/team/technical/hari.png"
- },
- {
- "name": "Rupaak S",
- "position": "Frontend",
- "img": "/team/technical/rupaak.jpeg",
- "github":"https://github.com/RupaakSrinivas",
- "linkedin":"https://www.linkedin.com/in/rupaaksrinivas/"
- },
- {
- "name": "Sidhant S Srivastava",
- "position": "Machine Learning",
- "img": "/team/technical/sidhant.jpeg",
- "github":"https://github.com/sidhant-sriv",
- "linkedin":"https://www.linkedin.com/in/sidhant-srivastava-41803620b/"
- },
- {
- "name": "Soham Ghugare",
- "position": "Backend",
- "img": "/team/technical/soham.jpeg",
- "github":"https://github.com/SohamGhugare",
- "linkedin":"https://www.linkedin.com/in/soham-ghugare/"
- },
- {
- "name": "Souvik Mahanta",
- "position": "Security",
- "img": "/team/technical/souvik.jpeg",
- "linkedin":"https://www.linkedin.com/in/souvik-mahanta/"
- }
+ {
+ "name": "Aarabi",
+ "position": "Python",
+ "img": "/team/technical/aarabi.jpeg",
+ "linkedin": "https://www.linkedin.com/in/aarabi-balakrishnan-88629b28a/"
+ },
+ {
+ "name": "Abhijeet Bhardwaj",
+ "position": "App",
+ "img": "/team/technical/abhijeet.jpeg",
+ "github": "https://github.com/abhijeet-Bh",
+ "linkedin": "https://www.linkedin.com/in/abhijeet-bh/"
+ },
+ {
+ "name": "Aditya Chowdhary",
+ "position": "Backend",
+ "img": "/team/technical/aditya_chowdhary.jpeg",
+ "github": "https://github.com/Aditya-Chowdhary"
+ },
+ {
+ "name": "Ameya Kore",
+ "position": "Full Stack",
+ "img": "/team/technical/ameya.jpeg",
+ "linkedin": "https://www.linkedin.com/in/ameya-kore-925620239/"
+ },
+ {
+ "name": "Chandram Dutta",
+ "position": "App",
+ "img": "/team/technical/chandram.jpeg",
+ "github": "https://github.com/Chandram-Dutta",
+ "linkedin": "https://www.linkedin.com/in/chandramdutta/"
+ },
+ {
+ "name": "Dev Keshwani",
+ "position": "App",
+ "img": "/team/technical/dev.jpeg",
+ "github": "https://github.com/dk-a-dev"
+ },
+ {
+ "name": "Divyanshu Singh",
+ "position": "Full Stack",
+ "img": "/team/technical/divyanshu.png",
+ "github": "https://github.com/isinghdivyanshu",
+ "linkedin": "https://www.linkedin.com/in/isinghdivyanshu/"
+ },
+ {
+ "name": "Hari Govind",
+ "position": "App and Security",
+ "img": "/team/technical/hari.png"
+ },
+ {
+ "name": "John Tony",
+ "position": "Backend",
+ "img": "/team/technical/john.jpeg",
+ "github": "https://github.com/johntony366",
+ "linkedin": "https://www.linkedin.com/in/johntony366/"
+ },
+ {
+ "name": "Prashanna Rajbhandari",
+ "position": "App",
+ "img": "/team/technical/prashanna.jpg",
+ "github": "https://github.com/PrashannaR",
+ "linkedin": "https://www.linkedin.com/in/prashannar/"
+ },
+ {
+ "name": "Pratham Gupta",
+ "position": "Frontend",
+ "img": "/team/technical/pratham.jpeg",
+ "github": "https://github.com/SafeTorpedo"
+ },
+ {
+ "name": "Rounak Agrawal",
+ "position": "App and Frontend",
+ "img": "/team/technical/rounak.jpeg",
+ "github": "https://github.com/userrounakk",
+ "linkedin": "https://www.linkedin.com/in/userrounakk/"
+ },
+ {
+ "name": "Rupaak S",
+ "position": "Frontend",
+ "img": "/team/technical/rupaak.jpeg",
+ "github": "https://github.com/RupaakSrinivas",
+ "linkedin": "https://www.linkedin.com/in/rupaaksrinivas/"
+ },
+ {
+ "name": "Sankhayan Bhattacharjee",
+ "position": "Backend, Game and Blockchain",
+ "img": "/team/technical/sankhayan.png",
+ "link": "https://lioncatdevstudio.itch.io/",
+ "github": "https://github.com/Lioncat2002",
+ "linkedin": "https://www.linkedin.com/in/sankhayan-bhattacharjee-996336220/"
+ },
+ {
+ "name": "Sayar Bhattacharyya",
+ "position": "Frontend",
+ "img": "/team/technical/sayar.jpeg",
+ "github": "https://github.com/SayarB",
+ "linkedin": "https://www.linkedin.com/in/sayar-bhattacharyya/"
+ },
+ {
+ "name": "Sidhant Srivastava",
+ "position": "Machine Learning",
+ "img": "/team/technical/sidhant.jpg",
+ "link": "https://www.sidsodsud.tech/",
+ "github": "https://www.github.com/sidhant-sriv",
+ "linkedin": "https://www.linkedin.com/in/sidhant-srivastava-41803620b/"
+ },
+ {
+ "name": "Souvik Mahanta",
+ "position": "Cyber Security",
+ "img": "/team/technical/souvik.jpeg",
+ "github": "https://github.com/souvik03-136",
+ "linkedin": "https://www.linkedin.com/in/souvik-mahanta/"
+ },
+ {
+ "name": "Aakaash SS",
+ "position": "Security",
+ "img": "/team/technical/aakaash.jpg",
+ "link": "https://ssaakaash.in",
+ "github": "https://github.com/ssaakaash",
+ "linkedin": " https://www.linkedin.com/in/ssaakaash"
+ },
+ {
+ "name": "Aman Singh",
+ "position": "Backend",
+ "img": "/team/technical/aman.jpg",
+ "github": "https://github.com/DevloperAmanSingh",
+ "linkedin": "https://www.linkedin.com/in/amansingh2112"
+ },
+ {
+ "name": "Dipit Madan",
+ "position": "Python",
+ "img": "/team/technical/dipit.jpeg",
+ "github": "https://github.com/Dipit12",
+ "linkedin": "https://www.linkedin.com/in/dipit-madan"
+ },
+ {
+ "name": "Jothish Kamal",
+ "position": "App",
+ "img": "/team/technical/jothish.jpg",
+ "github": "https://github.com/jothishkamal",
+ "linkedin": "https://www.linkedin.com/in/jothishkamal"
+ },
+ {
+ "name": "Kurian Avaran Jojo",
+ "position": "Python",
+ "img": "/team/technical/kurian.jpeg",
+ "github": "https://github.com/polyesterswing",
+ "linkedin": "https://www.linkedin.com/in/kurian-jojo-544a54215"
+ },
+ {
+ "name": "Mudit Pandey",
+ "position": "Backend",
+ "img": "/team/technical/mudit.jpg",
+ "github": "https://github.com/creationsofm7",
+ "linkedin": "https://www.linkedin.com/in/mudit-m7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app"
+ },
+ {
+ "name": "Nitin Kumar Pandey",
+ "position": "Frontend",
+ "img": "/team/technical/nitin.jpg",
+ "github": "https://github.com/NitinTheGreat",
+ "linkedin": "https://linkedin.com/in/nitinkrpandey"
+ },
+ {
+ "name": "Noel Alex",
+ "position": "AI/ML",
+ "img": "/team/technical/noel.jpg",
+ "github": "https://github.com/Noel-Alex",
+ "linkedin": "https://www.linkedin.com/in/noel-alex-b1731128b/"
+ },
+ {
+ "name": "P Geetha Pranay",
+ "position": "Backend",
+ "img": "/team/technical/pranay.jpg",
+ "github": "https://github.com/Geethapranay1",
+ "linkedin": "https://www.linkedin.com/in/geetha-pranay-1b97192b4"
+ },
+ {
+ "name": "Rayan Vishal Madan",
+ "position": "Game Dev",
+ "img": "/team/technical/rayan.jpg",
+ "link": "https://graphicmismatch.itch.io",
+ "github": "https://github.com/graphicmismatch",
+ "linkedin": "https://www.linkedin.com/in/rayan-madan"
+ },
+ {
+ "name": "Rujin Devkota",
+ "position": "App",
+ "img": "/team/technical/rujin.jpg",
+ "github": "https://github.com/rujin2003",
+ "linkedin": "https://www.linkedin.com/in/rujin-devkota/"
+ },
+ {
+ "name": "Sarvesh Dakhore",
+ "position": "Backend",
+ "img": "/team/technical/sarvesh.jpg",
+ "github": "https://github.com/sarveshdakhore",
+ "linkedin": "https://www.linkedin.com/in/sarveshdakhore"
+ }
]
diff --git a/web/content/team_members_board.json b/web/content/team_members_board.json
index c360ecf..5ab6744 100644
--- a/web/content/team_members_board.json
+++ b/web/content/team_members_board.json
@@ -1,67 +1,77 @@
[
- {
- "name": "Vishesh Bansal",
- "position": "GDSC Lead",
- "img": "/team/board/vishesh.webp",
- "github": "https://github.com/VisheshBansal",
- "linkedin":"https://www.linkedin.com/in/bansalvishesh/"
- },
- {
- "name": "Yajat Malhotra",
- "position": "Technical Lead",
- "img": "/team/board/yajat.webp",
- "link":"https://iamyajat.com/",
- "github":"https://github.com/iamyajat",
- "linkedin":"https://www.linkedin.com/in/iamyajat/"
- },
- {
- "name": "Jeevan Yohan Varghese",
- "position": "App Lead",
- "img": "/team/board/jeevan.webp",
- "linkedin":"https://www.linkedin.com/in/jeevan-yohan-varghese/",
- "github":"https://github.com/jeevan-yohan-varghese"
- },
- {
- "name": "Pranav Ram",
- "position": "Design Lead — Projects & Video",
- "img": "/team/board/pranav.webp",
- "linkedin":"https://www.linkedin.com/in/pranavramk/"
- },
- {
- "name": "Raggav Subramani",
- "position": "Management & Operations Lead",
- "img": "/team/board/raggav.webp",
- "linkedin":"https://www.linkedin.com/in/r-droid101/"
- },
- {
- "name": "Lokesh Rai",
- "position": "Projects & External Affairs Lead",
- "img": "/team/board/lokesh.webp",
- "linkedin":"https://www.linkedin.com/in/lokeshrai7/"
- },
- {
- "name": "Krishap Sreenivasan",
- "position": "Cloud and SecOps Lead",
- "img": "/team/board/krishap_new.webp",
- "linkedin":"https://www.linkedin.com/in/krishap-sreenivasan-4838b1203/",
- "github":"https://github.com/orgs/GDGVIT/people/Krishap-s"
- },
- {
- "name": "Kush Ojha",
- "position": "Machine Learning & Content Lead",
- "img": "/team/board/kush.jpeg",
- "linkedin":"https://www.linkedin.com/in/kushojha/"
- },
- {
- "name": "Aditya Mitra",
- "position": "Events & Marketing Lead",
- "img": "/team/board/aditya.webp",
- "linkedin": "https://www.linkedin.com/in/mitra-aditya/"
- },
- {
- "name": "Projukta Mandal",
- "position": "Design Lead — Events",
- "img": "/team/board/projukta.webp",
- "linkedin":"https://www.linkedin.com/in/projukta-mandal"
- }
+ {
+ "name": "Dhruv Shah",
+ "position": "GDSC Lead",
+ "img": "/team/board/dhruv.jpeg",
+ "link": "",
+ "github": "https://github.com/Dhruv9449",
+ "linkedin": "https://www.linkedin.com/in/dhruv9449/"
+ },
+ {
+ "name": "Anuj Parihar",
+ "position": "Technical Lead",
+ "img": "/team/board/anuj.jpeg",
+ "link": "",
+ "github": "https://github.com/bearts",
+ "linkedin": "https://www.linkedin.com/in/anujpflash/"
+ },
+ {
+ "name": "Anirudh Mishra",
+ "position": "Web Lead",
+ "img": "/team/board/anirudh.jpeg",
+ "link": "",
+ "github": "https://github.com/anirudhgray",
+ "linkedin": "https://www.linkedin.com/in/anirudh-mishra/"
+ },
+ {
+ "name": "Rudrank Basant",
+ "position": "App Lead",
+ "img": "/team/board/rudrank.jpeg",
+ "link": "",
+ "linkedin": "https://www.linkedin.com/in/rudrankbasant/",
+ "github": "https://github.com/rudrankbasant"
+ },
+ {
+ "name": "Vignesh Natarajan",
+ "position": "Projects & Open Source Lead",
+ "img": "/team/board/vignesh.jpeg",
+ "link": "",
+ "linkedin": "https://www.linkedin.com/in/0x5b",
+ "github": "https://github.com/0x5b-5245444143544544-5d"
+ },
+ {
+ "name": "Sanvi Chavan",
+ "position": "Management & Events Lead",
+ "img": "/team/board/sanvi.jpeg",
+ "link": "",
+ "linkedin": "https://www.linkedin.com/in/sanvi-chavan-849669231/"
+ },
+ {
+ "name": "Sanksriti Modi",
+ "position": "Finance & External Affairs Lead",
+ "img": "/team/board/sanskriti.jpeg",
+ "link": "",
+ "linkedin": "https://www.linkedin.com/in/sanskriti-modi-b1207b229/"
+ },
+ {
+ "name": "Aastha Gupta",
+ "position": "DM & Content Lead",
+ "img": "/team/board/aastha.jpeg",
+ "link": "",
+ "linkedin": "https://www.linkedin.com/in/aastha-gupta-5a3824224/"
+ },
+ {
+ "name": "Deepam Purkayastha",
+ "position": "Design Lead (Projects)",
+ "img": "/team/board/deepam.jpeg",
+ "link": "",
+ "linkedin": "https://www.linkedin.com/in/deepam-purkayastha-309b23224/"
+ },
+ {
+ "name": "Utkarsh Prasad Sinha",
+ "position": "Design Lead (Video & Events)",
+ "img": "/team/board/utkarsh.jpg",
+ "link": "",
+ "linkedin": "https://www.linkedin.com/in/utkarsh-prasad-sinha-0a267519a/"
+ }
]
diff --git a/web/content/team_members_design.json b/web/content/team_members_design.json
index c169407..cfba8cf 100644
--- a/web/content/team_members_design.json
+++ b/web/content/team_members_design.json
@@ -1,49 +1,117 @@
[
- {
- "name": "Utkarsh Prasad Sinha",
- "position": "Video and Graphics",
- "img": "/team/design/utkarsh.jpg",
- "linkedin":"https://www.linkedin.com/in/utkarsh-prasad-sinha-0a267519a/"
- },
- {
- "name": "Deepam Purkayastha",
- "position":"UI/UX",
- "img":"/team/design/deepam.jpeg",
- "linkedin":"https://www.linkedin.com/in/deepam-purkayastha-309b23224/"
- },
- {
- "name": "Kumar Aryan",
- "position": "UI/UX",
- "img": "/team/design/kumar_aryan.jpeg",
- "linkedin":"https://www.linkedin.com/in/kraryan/"
- },
- {
- "name":"Praful K M",
- "position":"UI/UX",
- "img":"/team/design/praful.jpeg",
- "linkedin":"https://www.linkedin.com/in/prafulkm/"
- },
- {
- "name": "Chandrima Manik",
- "position": "UI/UX",
- "img": "/team/design/chandrima.jpeg",
- "linkedin":"https://www.linkedin.com/in/chandrima-manik-497028276/"
- },
- {
- "name": "Sanchit Gupta",
- "position": "Design",
- "img": "/team/technical/sanchit.jpeg"
- },
- {
- "name": "Esha Santosh",
- "position": "UI/UX",
- "img": "/team/design/esha.jpg",
- "linkedin":"https://www.linkedin.com/in/eshasantosh/"
- },
- {
- "name": "Simar Bhatia",
- "position": "Video and Graphics",
- "img": "/team/design/simar.jpeg",
- "linkedin":"https://www.linkedin.com/in/simar-bhatia-2b9504b8/"
- }
+ {
+ "name": "Chandrima Manik",
+ "position": "UI/UX",
+ "img": "/team/design/chandrima.jpeg",
+ "linkedin": "https://www.linkedin.com/in/chandrima-manik-497028276/"
+ },
+ {
+ "name": "Esha Santosh",
+ "position": "UI/UX and Graphics",
+ "img": "/team/design/esha.jpg",
+ "link": "https://medium.com/@eshasantosh",
+ "github": "https://github.com/eshasantosh",
+ "linkedin": "https://linkedin.com/in/eshasantosh"
+ },
+ {
+ "name": "Kumar Aryan",
+ "position": "UI/UX",
+ "img": "/team/design/kumar_aryan.jpeg",
+ "linkedin": "https://www.linkedin.com/in/kraryan/"
+ },
+ {
+ "name": "Praful K M",
+ "position": "UI/UX",
+ "img": "/team/design/praful.jpeg",
+ "linkedin": "https://www.linkedin.com/in/prafulkm/"
+ },
+ {
+ "name": "Sanchit Gupta",
+ "position": "Design",
+ "img": "/team/design/sanchit.jpeg"
+ },
+ {
+ "name": "Simar Bhatia",
+ "position": "UI/UX and Motion Graphics",
+ "img": "/team/design/simar.jpg",
+ "link": "https://www.behance.net/simarbhatiasb7",
+ "linkedin": "http://linkedin.com/in/simar-bhatia-2b9504b8"
+ },
+ {
+ "name": "Aanavi Patel",
+ "position": "Graphic Design",
+ "img": "/team/design/aanvi.jpg",
+ "linkedin": "https://www.linkedin.com/in/aanavi-patel-a58384283?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app"
+ },
+ {
+ "name": "Aditya Sharma",
+ "position": "UI/UX",
+ "img": "/team/design/aditya_sharma.jpeg",
+ "github": "https://github.com/Adi07289",
+ "linkedin": "https://www.linkedin.com/in/aditya-sharma-015a00207/"
+ },
+ {
+ "name": "Akshitha Bijith",
+ "position": "UI/UX",
+ "img": "/team/design/akshitha.jpg",
+ "linkedin": "https://www.linkedin.com/in/akshitha-bijith-5b829328b"
+ },
+ {
+ "name": "Ana Khandelwal",
+ "position": "Video and Graphics",
+ "img": "/team/design/ana.jpg",
+ "github": "https://github.com/AnaKhandelwal",
+ "linkedin": "https://www.linkedin.com/in/ana-khandelwal-a8913128b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app"
+ },
+ {
+ "name": "Google Kakati",
+ "position": "UI/UX",
+ "img": "/team/design/google.jpg",
+ "github": "https://github.com/alpha-centauri-pol",
+ "linkedin": "https://www.linkedin.com/in/google-kakati-899525306?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app"
+ },
+ {
+ "name": "Radhika Kundnani",
+ "position": "UI/UX",
+ "img": "/team/design/radhika.jpg",
+ "linkedin": "https://www.linkedin.com/in/radhika-kundnani/"
+ },
+ {
+ "name": "Raisa Jose",
+ "position": "UI/UX",
+ "img": "/team/design/raisa.jpeg",
+ "github": "https://github.com/raisaaajose",
+ "linkedin": "https://www.linkedin.com/in/raisa-jose/"
+ },
+ {
+ "name": "Samridh Suresh",
+ "position": "UI/UX",
+ "img": "/team/design/samridh.jpeg",
+ "linkedin": "https://www.linkedin.com/in/samridh-suresh/"
+ },
+ {
+ "name": "Sarah Susan George",
+ "position": "UI/UX",
+ "img": "/team/design/sarah.jpeg",
+ "linkedin": "https://www.linkedin.com/in/sarah-george-b2588528a/"
+ },
+ {
+ "name": "Shreya Sethu",
+ "position": "UI/UX",
+ "img": "/team/design/shreya.jpg",
+ "linkedin": "https://www.linkedin.com/in/shreya-sethu-1baab61bb/"
+ },
+ {
+ "name": "Suhani Pasricha",
+ "position": "Graphic Design",
+ "img": "/team/design/suhani_pasricha.jpg",
+ "github": "https://github.com/suhanipasricha",
+ "linkedin": "https://www.linkedin.com/in/suhanipasricha/"
+ },
+ {
+ "name": "Vedant Patel",
+ "position": "UI/UX",
+ "img": "/team/design/vedant.jpg",
+ "linkedin": "https://www.linkedin.com/in/vedant-patel-a750b3288/"
+ }
]
diff --git a/web/content/team_members_managers.json b/web/content/team_members_managers.json
index 625cf3c..95d2e86 100644
--- a/web/content/team_members_managers.json
+++ b/web/content/team_members_managers.json
@@ -1,115 +1,137 @@
[
- {
- "name": "Aastha Gupta",
- "position": "Manager",
- "img": "/team/management/aastha.jpeg",
- "linkedin": "https://www.linkedin.com/in/aastha-gupta-5a3824224/"
- },
- {
- "name": "Sanksriti Modi",
- "position": "Manager",
- "img": "/team/management/sanskriti.jpeg",
- "linkedin": "https://www.linkedin.com/in/sanskriti-modi-b1207b229/"
- },
- {
- "name": "Sanvi Chavan",
- "position": "Manager",
- "img": "/team/management/sanvi.jpeg",
- "linkedin": "https://www.linkedin.com/in/sanvi-chavan-849669231/"
- },
- {
- "name": "Arnav Jaggi",
- "position": "Manager",
- "img": "/team/management/arnav.jpeg",
- "linkedin": "https://www.linkedin.com/in/arnavjaggi/"
- },
- {
- "name": "Suhani Kansal",
- "position": "Manager",
- "img": "/team/management/suhani_kansal.jpeg",
- "linkedin": "https://www.linkedin.com/in/suhani-kansal-7939a91b6/"
- },
- {
- "name": "Raghav Trivedi",
- "position": "Manager",
- "img": "/team/management/raghav.jpeg",
- "linkedin": "https://www.linkedin.com/in/raghav-trivedi/"
- },
- {
- "name": "Pranav Piedy",
- "position": "Manager",
- "img": "/team/management/pranav.jpeg",
- "linkedin": "https://www.linkedin.com/in/pranav-piedy-bb4279223/"
- },
- {
- "name": "Rohith Senthil",
- "position": "Manager",
- "img": "/team/management/rohith.jpeg"
- },
- {
- "name": "Aditya Chheda",
- "position": "Manager",
- "img": "/team/management/aditya_ch.jpeg",
- "linkedin": "https://www.linkedin.com/in/aditya-chheda-652a9818b/"
- },
- {
- "name": "Aditya Sareen",
- "position": "Manager",
- "img": "/team/management/aditya_sareen.jpeg",
- "linkedin": "https://www.linkedin.com/in/aditya-sareen-607115250/"
- },
- {
- "name": "Aravind Ajith Kumar",
- "position": "Manager",
- "img": "/team/management/aravind.jpeg",
- "linkedin": "https://www.linkedin.com/in/aravind-ajith-kumar-nair-7b588b276/"
- },
- {
- "name": "Dhriti Soni",
- "position": "Manager",
- "img": "/team/management/dhriti.jpeg",
- "linkedin": "https://www.linkedin.com/in/dhriti-soni-343085267/"
- },
- {
- "name": "Disha Jain",
- "position": "Manager",
- "img": "/team/management/disha.jpeg",
- "linkedin": "https://www.linkedin.com/in/disha-jain-7a0167216/"
- },
- {
- "name": "Emily Gilbert",
- "position": "Manager",
- "img": "/team/management/emily.jpeg",
- "linkedin": "https://www.linkedin.com/in/emily-gilbert-413810271/"
- },
- {
- "name": "Karan Bihani",
- "position": "Manager",
- "img": "/team/management/karan.jpeg",
- "linkedin": "https://www.linkedin.com/in/karan-bihani/"
- },
- {
- "name": "Kritika Sharma",
- "position": "Manager",
- "img": "/team/management/kritika.jpg",
- "linkedin": "https://www.linkedin.com/in/kritika-sharma-539400277/"
- },
- {
- "name": "G Tejojith",
- "position": "Manager",
- "img": "/team/management/tejojith.jpeg",
- "linkedin": "https://www.linkedin.com/in/tejojith-g-student-manager/"
- },
- {
- "name": "Yashita Berry",
- "position": "Manager",
- "img": "/team/management/yashita_berry.jpeg",
- "linkedin": "https://www.linkedin.com/in/yashita-berry-695578277/"
- },
- {
- "name": "Yashita Jindal",
- "position": "Manager",
- "img": "/team/management/yashita_jindal.jpeg",
- "linkedin": "https://www.linkedin.com/in/yashita-jindal-4814ab267/"
- }
+ {
+ "name": "Aditya Chheda",
+ "position": "Manager",
+ "img": "/team/management/aditya_ch.jpeg",
+ "linkedin": "https://www.linkedin.com/in/aditya-chheda-652a9818b/"
+ },
+ {
+ "name": "Aditya Sareen",
+ "position": "Manager",
+ "img": "/team/management/aditya_sareen.jpeg",
+ "linkedin": "https://www.linkedin.com/in/aditya-sareen-607115250/"
+ },
+ {
+ "name": "Aravind Ajith Kumar",
+ "position": "Manager",
+ "img": "/team/management/aravind.jpeg",
+ "linkedin": "https://www.linkedin.com/in/aravind-ajith-kumar-nair-7b588b276/"
+ },
+ {
+ "name": "Arnav Jaggi",
+ "position": "Manager",
+ "img": "/team/management/arnav.jpeg",
+ "linkedin": "https://www.linkedin.com/in/arnavjaggi/"
+ },
+ {
+ "name": "Disha Jain",
+ "position": "Manager",
+ "img": "/team/management/disha.jpeg",
+ "linkedin": "https://www.linkedin.com/in/disha-jain-7a0167216/"
+ },
+ {
+ "name": "Emily Gilbert",
+ "position": "Manager",
+ "img": "/team/management/emily.jpeg",
+ "linkedin": "https://www.linkedin.com/in/emilyliz-gilbert/"
+ },
+ {
+ "name": "G Tejojith",
+ "position": "Manager",
+ "img": "/team/management/tejojith.jpg",
+ "linkedin": "https://www.linkedin.com/in/tejojith-g-student-manager/"
+ },
+ {
+ "name": "Karan Bihani",
+ "position": "Manager",
+ "img": "/team/management/karan.jpeg",
+ "linkedin": "https://www.linkedin.com/in/karan-bihani/"
+ },
+ {
+ "name": "Kritika Sharma",
+ "position": "Manager",
+ "img": "/team/management/kritika.jpg",
+ "linkedin": "https://www.linkedin.com/in/kritika-sharma-539400277/"
+ },
+ {
+ "name": "Pranav Piedy",
+ "position": "Manager",
+ "img": "/team/management/pranav.jpeg",
+ "linkedin": "https://www.linkedin.com/in/pranav-piedy-bb4279223/"
+ },
+ {
+ "name": "Raghav Trivedi",
+ "position": "Manager",
+ "img": "/team/management/raghav.jpeg",
+ "linkedin": "https://www.linkedin.com/in/raghav-trivedi/"
+ },
+ {
+ "name": "Rohith Senthil",
+ "position": "Manager",
+ "img": "/team/management/rohith.jpeg"
+ },
+ {
+ "name": "Suhani Kansal",
+ "position": "Manager",
+ "img": "/team/management/suhani_kansal.jpeg",
+ "linkedin": "https://www.linkedin.com/in/suhani-kansal-7939a91b6/"
+ },
+ {
+ "name": "Aditya Acharya",
+ "position": "Manager",
+ "img": "/team/management/aditya_acharya.jpg",
+ "github": "https://github.com/Aditya-Acharya12",
+ "linkedin": "https://www.linkedin.com/in/aditya-acharya-2425ab29a"
+ },
+ {
+ "name": "Aditya Shukla",
+ "position": "Manager",
+ "img": "/team/management/aditya_shukla.jpg",
+ "github": "https://github.com/Adityashukla2006",
+ "linkedin": "https://www.linkedin.com/in/aditya-shukla-99b39124a/"
+ },
+ {
+ "name": "Bhavya Tyagi",
+ "position": "Manager",
+ "img": "/team/management/bhavya.jpg",
+ "linkedin": "https://www.linkedin.com/in/bhavyatyagi2004/"
+ },
+ {
+ "name": "Jiya Shrimalani",
+ "position": "Manager",
+ "img": "/team/management/jiya.jpg",
+ "linkedin": "http://linkedin.com/in/jiya-shrimalani-28839228b"
+ },
+ {
+ "name": "Nirmit Jain",
+ "position": "Manager",
+ "img": "/team/management/nirmit.jpg",
+ "linkedin": "https://www.linkedin.com/in/nirmitjain2110"
+ },
+ {
+ "name": "Pravenraam Shankar",
+ "position": "Manager",
+ "img": "/team/management/praven.jpg",
+ "link": "https://bento.me/praven",
+ "github": "https://github.com/praventhegenius",
+ "linkedin": "https://www.linkedin.com/in/pravenraam/"
+ },
+ {
+ "name": "Rahul Joseph Thomas",
+ "position": "Manager",
+ "img": "/team/management/rahul.jpg",
+ "linkedin": "https://www.linkedin.com/in/rahul-joseph-thomas-318173306?trk=blended-typeahead"
+ },
+ {
+ "name": "Ranjani S",
+ "position": "Manager",
+ "img": "/team/management/ranjani.jpg",
+ "linkedin": "https://www.linkedin.com/in/ranjani-s-2a1954306/"
+ },
+ {
+ "name": "Reenu B",
+ "position": "Manager",
+ "img": "/team/management/reenu.jpg",
+ "linkedin": "https://www.linkedin.com/in/breenu/"
+ }
]
diff --git a/web/package-lock.json b/web/package-lock.json
index 5739e37..6542ed7 100644
--- a/web/package-lock.json
+++ b/web/package-lock.json
@@ -23,6 +23,7 @@
"react": "18.2.0",
"react-dom": "18.2.0",
"react-horizontal-vertical": "^1.0.4",
+ "react-icons": "^4.11.0",
"react-query": "^3.39.3",
"react-scroll": "^1.8.9",
"react-scroll-parallax": "^3.4.2",
@@ -103,13 +104,13 @@
}
},
"node_modules/@babel/code-frame": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz",
- "integrity": "sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==",
+ "version": "7.24.7",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz",
+ "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==",
"license": "MIT",
"dependencies": {
- "@babel/highlight": "^7.22.10",
- "chalk": "^2.4.2"
+ "@babel/highlight": "^7.24.7",
+ "picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
@@ -155,14 +156,14 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz",
- "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==",
+ "version": "7.25.6",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.6.tgz",
+ "integrity": "sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==",
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.22.10",
- "@jridgewell/gen-mapping": "^0.3.2",
- "@jridgewell/trace-mapping": "^0.3.17",
+ "@babel/types": "^7.25.6",
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^2.5.1"
},
"engines": {
@@ -434,18 +435,18 @@
}
},
"node_modules/@babel/helper-string-parser": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
- "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==",
+ "version": "7.24.8",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz",
+ "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz",
- "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==",
+ "version": "7.24.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz",
+ "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
@@ -489,24 +490,28 @@
}
},
"node_modules/@babel/highlight": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz",
- "integrity": "sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==",
+ "version": "7.24.7",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz",
+ "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==",
"license": "MIT",
"dependencies": {
- "@babel/helper-validator-identifier": "^7.22.5",
+ "@babel/helper-validator-identifier": "^7.24.7",
"chalk": "^2.4.2",
- "js-tokens": "^4.0.0"
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz",
- "integrity": "sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==",
+ "version": "7.25.6",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz",
+ "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==",
"license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.25.6"
+ },
"bin": {
"parser": "bin/babel-parser.js"
},
@@ -1894,34 +1899,31 @@
}
},
"node_modules/@babel/template": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz",
- "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==",
+ "version": "7.25.0",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz",
+ "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.22.5",
- "@babel/parser": "^7.22.5",
- "@babel/types": "^7.22.5"
+ "@babel/code-frame": "^7.24.7",
+ "@babel/parser": "^7.25.0",
+ "@babel/types": "^7.25.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz",
- "integrity": "sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==",
+ "version": "7.25.6",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.6.tgz",
+ "integrity": "sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==",
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.22.10",
- "@babel/generator": "^7.22.10",
- "@babel/helper-environment-visitor": "^7.22.5",
- "@babel/helper-function-name": "^7.22.5",
- "@babel/helper-hoist-variables": "^7.22.5",
- "@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/parser": "^7.22.10",
- "@babel/types": "^7.22.10",
- "debug": "^4.1.0",
+ "@babel/code-frame": "^7.24.7",
+ "@babel/generator": "^7.25.6",
+ "@babel/parser": "^7.25.6",
+ "@babel/template": "^7.25.0",
+ "@babel/types": "^7.25.6",
+ "debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
@@ -1929,13 +1931,13 @@
}
},
"node_modules/@babel/types": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz",
- "integrity": "sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==",
+ "version": "7.25.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz",
+ "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==",
"license": "MIT",
"dependencies": {
- "@babel/helper-string-parser": "^7.22.5",
- "@babel/helper-validator-identifier": "^7.22.5",
+ "@babel/helper-string-parser": "^7.24.8",
+ "@babel/helper-validator-identifier": "^7.24.7",
"to-fast-properties": "^2.0.0"
},
"engines": {
@@ -2070,14 +2072,14 @@
"license": "BSD-3-Clause"
},
"node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
- "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
+ "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
"license": "MIT",
"dependencies": {
- "@jridgewell/set-array": "^1.0.1",
+ "@jridgewell/set-array": "^1.2.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
+ "@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
@@ -2093,9 +2095,9 @@
}
},
"node_modules/@jridgewell/set-array": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
- "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
@@ -2108,9 +2110,9 @@
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.19",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz",
- "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==",
+ "version": "0.3.25",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
@@ -2960,12 +2962,12 @@
}
},
"node_modules/braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
"license": "MIT",
"dependencies": {
- "fill-range": "^7.0.1"
+ "fill-range": "^7.1.1"
},
"engines": {
"node": ">=8"
@@ -4064,9 +4066,9 @@
}
},
"node_modules/fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
"license": "MIT",
"dependencies": {
"to-regex-range": "^5.0.1"
@@ -5135,12 +5137,12 @@
}
},
"node_modules/micromatch": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
- "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
"license": "MIT",
"dependencies": {
- "braces": "^3.0.2",
+ "braces": "^3.0.3",
"picomatch": "^2.3.1"
},
"engines": {
@@ -5746,6 +5748,15 @@
"node": ">=12.0.0"
}
},
+ "node_modules/react-icons": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.12.0.tgz",
+ "integrity": "sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "*"
+ }
+ },
"node_modules/react-intersection-observer": {
"version": "8.34.0",
"resolved": "https://registry.npmjs.org/react-intersection-observer/-/react-intersection-observer-8.34.0.tgz",
diff --git a/web/public/team/management/aastha.jpeg b/web/public/team/board/aastha.jpeg
similarity index 100%
rename from web/public/team/management/aastha.jpeg
rename to web/public/team/board/aastha.jpeg
diff --git a/web/public/team/board/aditya.webp b/web/public/team/board/aditya.webp
deleted file mode 100644
index 2918ba7..0000000
Binary files a/web/public/team/board/aditya.webp and /dev/null differ
diff --git a/web/public/team/technical/anirudh.jpeg b/web/public/team/board/anirudh.jpeg
similarity index 100%
rename from web/public/team/technical/anirudh.jpeg
rename to web/public/team/board/anirudh.jpeg
diff --git a/web/public/team/technical/anuj.jpeg b/web/public/team/board/anuj.jpeg
similarity index 100%
rename from web/public/team/technical/anuj.jpeg
rename to web/public/team/board/anuj.jpeg
diff --git a/web/public/team/design/deepam.jpeg b/web/public/team/board/deepam.jpeg
similarity index 100%
rename from web/public/team/design/deepam.jpeg
rename to web/public/team/board/deepam.jpeg
diff --git a/web/public/team/technical/dhruv.jpeg b/web/public/team/board/dhruv.jpeg
similarity index 100%
rename from web/public/team/technical/dhruv.jpeg
rename to web/public/team/board/dhruv.jpeg
diff --git a/web/public/team/board/jeevan.webp b/web/public/team/board/jeevan.webp
deleted file mode 100644
index 19fabe2..0000000
Binary files a/web/public/team/board/jeevan.webp and /dev/null differ
diff --git a/web/public/team/board/krishap_new.webp b/web/public/team/board/krishap_new.webp
deleted file mode 100644
index 60e8c32..0000000
Binary files a/web/public/team/board/krishap_new.webp and /dev/null differ
diff --git a/web/public/team/board/kush.jpeg b/web/public/team/board/kush.jpeg
deleted file mode 100644
index 069fc78..0000000
Binary files a/web/public/team/board/kush.jpeg and /dev/null differ
diff --git a/web/public/team/board/kush.webp b/web/public/team/board/kush.webp
deleted file mode 100644
index b26a209..0000000
Binary files a/web/public/team/board/kush.webp and /dev/null differ
diff --git a/web/public/team/board/lokesh.webp b/web/public/team/board/lokesh.webp
deleted file mode 100644
index 57f9ff5..0000000
Binary files a/web/public/team/board/lokesh.webp and /dev/null differ
diff --git a/web/public/team/board/pranav.webp b/web/public/team/board/pranav.webp
deleted file mode 100644
index 6afa160..0000000
Binary files a/web/public/team/board/pranav.webp and /dev/null differ
diff --git a/web/public/team/board/projukta.webp b/web/public/team/board/projukta.webp
deleted file mode 100644
index 9f43dfc..0000000
Binary files a/web/public/team/board/projukta.webp and /dev/null differ
diff --git a/web/public/team/board/raggav.webp b/web/public/team/board/raggav.webp
deleted file mode 100644
index 9777aba..0000000
Binary files a/web/public/team/board/raggav.webp and /dev/null differ
diff --git a/web/public/team/technical/rudrank.jpeg b/web/public/team/board/rudrank.jpeg
similarity index 100%
rename from web/public/team/technical/rudrank.jpeg
rename to web/public/team/board/rudrank.jpeg
diff --git a/web/public/team/board/sanskriti.jpeg b/web/public/team/board/sanskriti.jpeg
new file mode 100644
index 0000000..1520189
Binary files /dev/null and b/web/public/team/board/sanskriti.jpeg differ
diff --git a/web/public/team/management/sanvi.jpeg b/web/public/team/board/sanvi.jpeg
similarity index 100%
rename from web/public/team/management/sanvi.jpeg
rename to web/public/team/board/sanvi.jpeg
diff --git a/web/public/team/board/utkarsh.jpg b/web/public/team/board/utkarsh.jpg
new file mode 100644
index 0000000..f382c6c
Binary files /dev/null and b/web/public/team/board/utkarsh.jpg differ
diff --git a/web/public/team/board/vignesh.jpeg b/web/public/team/board/vignesh.jpeg
new file mode 100644
index 0000000..bc96771
Binary files /dev/null and b/web/public/team/board/vignesh.jpeg differ
diff --git a/web/public/team/board/vishesh.webp b/web/public/team/board/vishesh.webp
deleted file mode 100644
index e856b65..0000000
Binary files a/web/public/team/board/vishesh.webp and /dev/null differ
diff --git a/web/public/team/board/yajat.webp b/web/public/team/board/yajat.webp
deleted file mode 100644
index 9163e1d..0000000
Binary files a/web/public/team/board/yajat.webp and /dev/null differ
diff --git a/web/public/team/design/aanvi.jpg b/web/public/team/design/aanvi.jpg
new file mode 100644
index 0000000..a93adf2
Binary files /dev/null and b/web/public/team/design/aanvi.jpg differ
diff --git a/web/public/team/design/aditya_sharma.jpeg b/web/public/team/design/aditya_sharma.jpeg
new file mode 100644
index 0000000..51d5144
Binary files /dev/null and b/web/public/team/design/aditya_sharma.jpeg differ
diff --git a/web/public/team/design/akshitha.jpg b/web/public/team/design/akshitha.jpg
new file mode 100644
index 0000000..50702fa
Binary files /dev/null and b/web/public/team/design/akshitha.jpg differ
diff --git a/web/public/team/design/ana.jpg b/web/public/team/design/ana.jpg
new file mode 100644
index 0000000..d7d2585
Binary files /dev/null and b/web/public/team/design/ana.jpg differ
diff --git a/web/public/team/design/esha.jpg b/web/public/team/design/esha.jpg
index f22f00f..3073c91 100644
Binary files a/web/public/team/design/esha.jpg and b/web/public/team/design/esha.jpg differ
diff --git a/web/public/team/design/google.jpg b/web/public/team/design/google.jpg
new file mode 100644
index 0000000..eaf77c2
Binary files /dev/null and b/web/public/team/design/google.jpg differ
diff --git a/web/public/team/design/radhika.jpg b/web/public/team/design/radhika.jpg
new file mode 100644
index 0000000..0319631
Binary files /dev/null and b/web/public/team/design/radhika.jpg differ
diff --git a/web/public/team/design/raisa.jpeg b/web/public/team/design/raisa.jpeg
new file mode 100644
index 0000000..084c959
Binary files /dev/null and b/web/public/team/design/raisa.jpeg differ
diff --git a/web/public/team/design/samridh.jpeg b/web/public/team/design/samridh.jpeg
new file mode 100644
index 0000000..f89bc54
Binary files /dev/null and b/web/public/team/design/samridh.jpeg differ
diff --git a/web/public/team/design/sanchit.jpeg b/web/public/team/design/sanchit.jpeg
new file mode 100644
index 0000000..db768ad
Binary files /dev/null and b/web/public/team/design/sanchit.jpeg differ
diff --git a/web/public/team/design/sarah.jpeg b/web/public/team/design/sarah.jpeg
new file mode 100644
index 0000000..f31e88e
Binary files /dev/null and b/web/public/team/design/sarah.jpeg differ
diff --git a/web/public/team/design/shreya.jpg b/web/public/team/design/shreya.jpg
new file mode 100644
index 0000000..1db3f31
Binary files /dev/null and b/web/public/team/design/shreya.jpg differ
diff --git a/web/public/team/design/simar.jpeg b/web/public/team/design/simar.jpeg
deleted file mode 100644
index 8b6412b..0000000
Binary files a/web/public/team/design/simar.jpeg and /dev/null differ
diff --git a/web/public/team/design/simar.jpg b/web/public/team/design/simar.jpg
new file mode 100644
index 0000000..ebfa46e
Binary files /dev/null and b/web/public/team/design/simar.jpg differ
diff --git a/web/public/team/design/suhani_pasricha.jpg b/web/public/team/design/suhani_pasricha.jpg
new file mode 100644
index 0000000..cac6f38
Binary files /dev/null and b/web/public/team/design/suhani_pasricha.jpg differ
diff --git a/web/public/team/design/utkarsh.heic b/web/public/team/design/utkarsh.heic
deleted file mode 100644
index 065c215..0000000
Binary files a/web/public/team/design/utkarsh.heic and /dev/null differ
diff --git a/web/public/team/design/utkarsh.jpg b/web/public/team/design/utkarsh.jpg
deleted file mode 100644
index 49b8845..0000000
Binary files a/web/public/team/design/utkarsh.jpg and /dev/null differ
diff --git a/web/public/team/design/vedant.jpg b/web/public/team/design/vedant.jpg
new file mode 100644
index 0000000..780a0d9
Binary files /dev/null and b/web/public/team/design/vedant.jpg differ
diff --git a/web/public/team/management/aditya_acharya.jpg b/web/public/team/management/aditya_acharya.jpg
new file mode 100644
index 0000000..641678d
Binary files /dev/null and b/web/public/team/management/aditya_acharya.jpg differ
diff --git a/web/public/team/management/aditya_ch.jpeg b/web/public/team/management/aditya_ch.jpeg
index 2a7a983..39051b9 100644
Binary files a/web/public/team/management/aditya_ch.jpeg and b/web/public/team/management/aditya_ch.jpeg differ
diff --git a/web/public/team/management/aditya_sareen.jpeg b/web/public/team/management/aditya_sareen.jpeg
index 818e087..02970e9 100644
Binary files a/web/public/team/management/aditya_sareen.jpeg and b/web/public/team/management/aditya_sareen.jpeg differ
diff --git a/web/public/team/management/aditya_shukla.jpg b/web/public/team/management/aditya_shukla.jpg
new file mode 100644
index 0000000..8b82265
Binary files /dev/null and b/web/public/team/management/aditya_shukla.jpg differ
diff --git a/web/public/team/management/bhavya.jpg b/web/public/team/management/bhavya.jpg
new file mode 100644
index 0000000..2188a37
Binary files /dev/null and b/web/public/team/management/bhavya.jpg differ
diff --git a/web/public/team/management/dhriti.jpeg b/web/public/team/management/dhriti.jpeg
deleted file mode 100644
index 7dbe771..0000000
Binary files a/web/public/team/management/dhriti.jpeg and /dev/null differ
diff --git a/web/public/team/management/emily.jpeg b/web/public/team/management/emily.jpeg
index 57f2f69..b4f2455 100644
Binary files a/web/public/team/management/emily.jpeg and b/web/public/team/management/emily.jpeg differ
diff --git a/web/public/team/management/jiya.jpg b/web/public/team/management/jiya.jpg
new file mode 100644
index 0000000..f8e4a99
Binary files /dev/null and b/web/public/team/management/jiya.jpg differ
diff --git a/web/public/team/management/kritika.heic b/web/public/team/management/kritika.heic
deleted file mode 100644
index 3223355..0000000
Binary files a/web/public/team/management/kritika.heic and /dev/null differ
diff --git a/web/public/team/management/kritika.jpg b/web/public/team/management/kritika.jpg
index 0960a49..36e8fc4 100644
Binary files a/web/public/team/management/kritika.jpg and b/web/public/team/management/kritika.jpg differ
diff --git a/web/public/team/management/nirmit.jpg b/web/public/team/management/nirmit.jpg
new file mode 100644
index 0000000..42923cd
Binary files /dev/null and b/web/public/team/management/nirmit.jpg differ
diff --git a/web/public/team/management/praven.jpg b/web/public/team/management/praven.jpg
new file mode 100644
index 0000000..01b4503
Binary files /dev/null and b/web/public/team/management/praven.jpg differ
diff --git a/web/public/team/management/rahul.jpg b/web/public/team/management/rahul.jpg
new file mode 100644
index 0000000..1159e21
Binary files /dev/null and b/web/public/team/management/rahul.jpg differ
diff --git a/web/public/team/management/ranjani.jpg b/web/public/team/management/ranjani.jpg
new file mode 100644
index 0000000..8f60c76
Binary files /dev/null and b/web/public/team/management/ranjani.jpg differ
diff --git a/web/public/team/management/reenu.jpg b/web/public/team/management/reenu.jpg
new file mode 100644
index 0000000..da62c03
Binary files /dev/null and b/web/public/team/management/reenu.jpg differ
diff --git a/web/public/team/management/sanskriti.jpeg b/web/public/team/management/sanskriti.jpeg
deleted file mode 100644
index d07d235..0000000
Binary files a/web/public/team/management/sanskriti.jpeg and /dev/null differ
diff --git a/web/public/team/management/tejojith.jpeg b/web/public/team/management/tejojith.jpeg
deleted file mode 100644
index 15af011..0000000
Binary files a/web/public/team/management/tejojith.jpeg and /dev/null differ
diff --git a/web/public/team/management/tejojith.jpg b/web/public/team/management/tejojith.jpg
new file mode 100644
index 0000000..3ce92af
Binary files /dev/null and b/web/public/team/management/tejojith.jpg differ
diff --git a/web/public/team/management/yashita_berry.jpeg b/web/public/team/management/yashita_berry.jpeg
deleted file mode 100644
index 9b9914b..0000000
Binary files a/web/public/team/management/yashita_berry.jpeg and /dev/null differ
diff --git a/web/public/team/management/yashita_jindal.jpeg b/web/public/team/management/yashita_jindal.jpeg
deleted file mode 100644
index 0e3945b..0000000
Binary files a/web/public/team/management/yashita_jindal.jpeg and /dev/null differ
diff --git a/web/public/team/technical/aakaash.jpg b/web/public/team/technical/aakaash.jpg
new file mode 100644
index 0000000..cb3de75
Binary files /dev/null and b/web/public/team/technical/aakaash.jpg differ
diff --git a/web/public/team/technical/abhijeet.jpeg b/web/public/team/technical/abhijeet.jpeg
index af09624..82eaab3 100644
Binary files a/web/public/team/technical/abhijeet.jpeg and b/web/public/team/technical/abhijeet.jpeg differ
diff --git a/web/public/team/technical/aman.jpg b/web/public/team/technical/aman.jpg
new file mode 100644
index 0000000..f278973
Binary files /dev/null and b/web/public/team/technical/aman.jpg differ
diff --git a/web/public/team/technical/dev.jpeg b/web/public/team/technical/dev.jpeg
index 691de12..48b3121 100644
Binary files a/web/public/team/technical/dev.jpeg and b/web/public/team/technical/dev.jpeg differ
diff --git a/web/public/team/technical/dipit.jpeg b/web/public/team/technical/dipit.jpeg
new file mode 100644
index 0000000..f6dae69
Binary files /dev/null and b/web/public/team/technical/dipit.jpeg differ
diff --git a/web/public/team/technical/jothish.jpg b/web/public/team/technical/jothish.jpg
new file mode 100644
index 0000000..a733e94
Binary files /dev/null and b/web/public/team/technical/jothish.jpg differ
diff --git a/web/public/team/technical/kurian.jpeg b/web/public/team/technical/kurian.jpeg
new file mode 100644
index 0000000..a1aa181
Binary files /dev/null and b/web/public/team/technical/kurian.jpeg differ
diff --git a/web/public/team/technical/mudit.jpg b/web/public/team/technical/mudit.jpg
new file mode 100644
index 0000000..0861075
Binary files /dev/null and b/web/public/team/technical/mudit.jpg differ
diff --git a/web/public/team/technical/nitin.jpg b/web/public/team/technical/nitin.jpg
new file mode 100644
index 0000000..2f2eb8e
Binary files /dev/null and b/web/public/team/technical/nitin.jpg differ
diff --git a/web/public/team/technical/noel.jpg b/web/public/team/technical/noel.jpg
new file mode 100644
index 0000000..f8597b1
Binary files /dev/null and b/web/public/team/technical/noel.jpg differ
diff --git a/web/public/team/technical/pranay.jpg b/web/public/team/technical/pranay.jpg
new file mode 100644
index 0000000..f86723b
Binary files /dev/null and b/web/public/team/technical/pranay.jpg differ
diff --git a/web/public/team/technical/prashanna.jpg b/web/public/team/technical/prashanna.jpg
index 8a36f0f..8511db2 100644
Binary files a/web/public/team/technical/prashanna.jpg and b/web/public/team/technical/prashanna.jpg differ
diff --git a/web/public/team/technical/rayan.jpg b/web/public/team/technical/rayan.jpg
new file mode 100644
index 0000000..7775349
Binary files /dev/null and b/web/public/team/technical/rayan.jpg differ
diff --git a/web/public/team/technical/rounak.jpeg b/web/public/team/technical/rounak.jpeg
index 3760e27..64daf35 100644
Binary files a/web/public/team/technical/rounak.jpeg and b/web/public/team/technical/rounak.jpeg differ
diff --git a/web/public/team/technical/rujin.jpg b/web/public/team/technical/rujin.jpg
new file mode 100644
index 0000000..bfc8628
Binary files /dev/null and b/web/public/team/technical/rujin.jpg differ
diff --git a/web/public/team/technical/sanchit.jpeg b/web/public/team/technical/sanchit.jpeg
deleted file mode 100644
index 282e945..0000000
Binary files a/web/public/team/technical/sanchit.jpeg and /dev/null differ
diff --git a/web/public/team/technical/sankhayan.jpeg b/web/public/team/technical/sankhayan.jpeg
deleted file mode 100644
index 61ebe81..0000000
Binary files a/web/public/team/technical/sankhayan.jpeg and /dev/null differ
diff --git a/web/public/team/technical/sankhayan.png b/web/public/team/technical/sankhayan.png
new file mode 100644
index 0000000..9662679
Binary files /dev/null and b/web/public/team/technical/sankhayan.png differ
diff --git a/web/public/team/technical/sarvesh.jpg b/web/public/team/technical/sarvesh.jpg
new file mode 100644
index 0000000..9f22cab
Binary files /dev/null and b/web/public/team/technical/sarvesh.jpg differ
diff --git a/web/public/team/technical/sidhant.jpeg b/web/public/team/technical/sidhant.jpeg
deleted file mode 100644
index a46c6ac..0000000
Binary files a/web/public/team/technical/sidhant.jpeg and /dev/null differ
diff --git a/web/public/team/technical/sidhant.jpg b/web/public/team/technical/sidhant.jpg
new file mode 100644
index 0000000..d01ec82
Binary files /dev/null and b/web/public/team/technical/sidhant.jpg differ
diff --git a/web/public/team/technical/soham.jpeg b/web/public/team/technical/soham.jpeg
deleted file mode 100644
index 55a1138..0000000
Binary files a/web/public/team/technical/soham.jpeg and /dev/null differ
diff --git a/web/public/team/technical/vignesh.jpeg b/web/public/team/technical/vignesh.jpeg
deleted file mode 100644
index bca5f82..0000000
Binary files a/web/public/team/technical/vignesh.jpeg and /dev/null differ
diff --git a/web/yarn.lock b/web/yarn.lock
index 0a7a409..9e15517 100644
--- a/web/yarn.lock
+++ b/web/yarn.lock
@@ -36,20 +36,20 @@
"@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents.3"
chokidar "^3.4.0"
-"@babel/code-frame@^7.22.10", "@babel/code-frame@^7.22.5":
- version "7.22.10"
- resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz"
- integrity sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==
+"@babel/code-frame@^7.22.10", "@babel/code-frame@^7.24.7":
+ version "7.24.7"
+ resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz"
+ integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==
dependencies:
- "@babel/highlight" "^7.22.10"
- chalk "^2.4.2"
+ "@babel/highlight" "^7.24.7"
+ picocolors "^1.0.0"
"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9":
version "7.22.9"
resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz"
integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==
-"@babel/core@^7.21.0":
+"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.0.0-0 || ^8.0.0-0 <8.0.0", "@babel/core@^7.12.0", "@babel/core@^7.13.0", "@babel/core@^7.21.0", "@babel/core@^7.4.0 || ^8.0.0-0 <8.0.0":
version "7.22.10"
resolved "https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz"
integrity sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==
@@ -70,14 +70,14 @@
json5 "^2.2.2"
semver "^6.3.1"
-"@babel/generator@^7.22.10":
- version "7.22.10"
- resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz"
- integrity sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==
+"@babel/generator@^7.22.10", "@babel/generator@^7.25.6":
+ version "7.25.6"
+ resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.25.6.tgz"
+ integrity sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==
dependencies:
- "@babel/types" "^7.22.10"
- "@jridgewell/gen-mapping" "^0.3.2"
- "@jridgewell/trace-mapping" "^0.3.17"
+ "@babel/types" "^7.25.6"
+ "@jridgewell/gen-mapping" "^0.3.5"
+ "@jridgewell/trace-mapping" "^0.3.25"
jsesc "^2.5.1"
"@babel/helper-annotate-as-pure@^7.22.5":
@@ -236,15 +236,15 @@
dependencies:
"@babel/types" "^7.22.5"
-"@babel/helper-string-parser@^7.22.5":
- version "7.22.5"
- resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz"
- integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
+"@babel/helper-string-parser@^7.24.8":
+ version "7.24.8"
+ resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz"
+ integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==
-"@babel/helper-validator-identifier@^7.22.5":
- version "7.22.5"
- resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz"
- integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
+"@babel/helper-validator-identifier@^7.22.5", "@babel/helper-validator-identifier@^7.24.7":
+ version "7.24.7"
+ resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz"
+ integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==
"@babel/helper-validator-option@^7.22.5":
version "7.22.5"
@@ -269,19 +269,22 @@
"@babel/traverse" "^7.22.10"
"@babel/types" "^7.22.10"
-"@babel/highlight@^7.22.10":
- version "7.22.10"
- resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz"
- integrity sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==
+"@babel/highlight@^7.24.7":
+ version "7.24.7"
+ resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz"
+ integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==
dependencies:
- "@babel/helper-validator-identifier" "^7.22.5"
+ "@babel/helper-validator-identifier" "^7.24.7"
chalk "^2.4.2"
js-tokens "^4.0.0"
+ picocolors "^1.0.0"
-"@babel/parser@^7.22.10", "@babel/parser@^7.22.5":
- version "7.22.10"
- resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz"
- integrity sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==
+"@babel/parser@^7.22.10", "@babel/parser@^7.25.0", "@babel/parser@^7.25.6":
+ version "7.25.6"
+ resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz"
+ integrity sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==
+ dependencies:
+ "@babel/types" "^7.25.6"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5":
version "7.22.5"
@@ -1032,38 +1035,35 @@
dependencies:
regenerator-runtime "^0.14.0"
-"@babel/template@^7.22.5":
- version "7.22.5"
- resolved "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz"
- integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==
+"@babel/template@^7.22.5", "@babel/template@^7.25.0":
+ version "7.25.0"
+ resolved "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz"
+ integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==
dependencies:
- "@babel/code-frame" "^7.22.5"
- "@babel/parser" "^7.22.5"
- "@babel/types" "^7.22.5"
+ "@babel/code-frame" "^7.24.7"
+ "@babel/parser" "^7.25.0"
+ "@babel/types" "^7.25.0"
"@babel/traverse@^7.21.2", "@babel/traverse@^7.22.10":
- version "7.22.10"
- resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz"
- integrity sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==
- dependencies:
- "@babel/code-frame" "^7.22.10"
- "@babel/generator" "^7.22.10"
- "@babel/helper-environment-visitor" "^7.22.5"
- "@babel/helper-function-name" "^7.22.5"
- "@babel/helper-hoist-variables" "^7.22.5"
- "@babel/helper-split-export-declaration" "^7.22.6"
- "@babel/parser" "^7.22.10"
- "@babel/types" "^7.22.10"
- debug "^4.1.0"
+ version "7.25.6"
+ resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.6.tgz"
+ integrity sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==
+ dependencies:
+ "@babel/code-frame" "^7.24.7"
+ "@babel/generator" "^7.25.6"
+ "@babel/parser" "^7.25.6"
+ "@babel/template" "^7.25.0"
+ "@babel/types" "^7.25.6"
+ debug "^4.3.1"
globals "^11.1.0"
-"@babel/types@^7.22.10", "@babel/types@^7.22.5", "@babel/types@^7.4.4":
- version "7.22.10"
- resolved "https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz"
- integrity sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==
+"@babel/types@^7.22.10", "@babel/types@^7.22.5", "@babel/types@^7.25.0", "@babel/types@^7.25.6", "@babel/types@^7.4.4":
+ version "7.25.6"
+ resolved "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz"
+ integrity sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==
dependencies:
- "@babel/helper-string-parser" "^7.22.5"
- "@babel/helper-validator-identifier" "^7.22.5"
+ "@babel/helper-string-parser" "^7.24.8"
+ "@babel/helper-validator-identifier" "^7.24.7"
to-fast-properties "^2.0.0"
"@emotion/is-prop-valid@^0.8.2":
@@ -1080,16 +1080,16 @@
dependencies:
"@emotion/memoize" "^0.8.1"
-"@emotion/memoize@0.7.4":
- version "0.7.4"
- resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz"
- integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
-
"@emotion/memoize@^0.8.1":
version "0.8.1"
resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz"
integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==
+"@emotion/memoize@0.7.4":
+ version "0.7.4"
+ resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz"
+ integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
+
"@emotion/unitless@^0.8.0":
version "0.8.1"
resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz"
@@ -1146,34 +1146,34 @@
resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
-"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
- version "0.3.3"
- resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"
- integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
+"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5":
+ version "0.3.5"
+ resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz"
+ integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==
dependencies:
- "@jridgewell/set-array" "^1.0.1"
+ "@jridgewell/set-array" "^1.2.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
- "@jridgewell/trace-mapping" "^0.3.9"
+ "@jridgewell/trace-mapping" "^0.3.24"
"@jridgewell/resolve-uri@^3.1.0":
version "3.1.1"
resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz"
integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==
-"@jridgewell/set-array@^1.0.1":
- version "1.1.2"
- resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
- integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
+"@jridgewell/set-array@^1.2.1":
+ version "1.2.1"
+ resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz"
+ integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
version "1.4.15"
resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
-"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
- version "0.3.19"
- resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz"
- integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==
+"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25", "@jridgewell/trace-mapping@^0.3.9":
+ version "0.3.25"
+ resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz"
+ integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
@@ -1209,42 +1209,42 @@
"@next/swc-darwin-x64@13.4.8":
version "13.4.8"
- resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.8.tgz#3de9c26a2ee7b189f22433bf8137256a2517f258"
+ resolved "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.8.tgz"
integrity sha512-Reox+UXgonon9P0WNDE6w85DGtyBqGitl/ryznOvn6TvfxEaZIpTgeu3ZrJLU9dHSMhiK7YAM793mE/Zii2/Qw==
"@next/swc-linux-arm64-gnu@13.4.8":
version "13.4.8"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.8.tgz#9536314c931b9e78f20e4a424eace9993015c6e1"
+ resolved "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.8.tgz"
integrity sha512-kdyzYvAYtqQVgzIKNN7e1rLU8aZv86FDSRqPlOkKZlvqudvTO0iohuTPmnEEDlECeBM6qRPShNffotDcU/R2KA==
"@next/swc-linux-arm64-musl@13.4.8":
version "13.4.8"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.8.tgz#a894ec6a078edd28f5cfab60593a61e05b6b605b"
+ resolved "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.8.tgz"
integrity sha512-oWxx4yRkUGcR81XwbI+T0zhZ3bDF6V1aVLpG+C7hSG50ULpV8gC39UxVO22/bv93ZlcfMY4zl8xkz9Klct6dpQ==
"@next/swc-linux-x64-gnu@13.4.8":
version "13.4.8"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.8.tgz#b8af198dc0b4a8c64deb0494ae285e3e1a465910"
+ resolved "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.8.tgz"
integrity sha512-anhtvuO6eE9YRhYnaEGTfbpH3L5gT/9qPFcNoi6xS432r/4DAtpJY8kNktqkTVevVIC/pVumqO8tV59PR3zbNg==
"@next/swc-linux-x64-musl@13.4.8":
version "13.4.8"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.8.tgz#d2ad24001020665a78405f595995c22750ec63c4"
+ resolved "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.8.tgz"
integrity sha512-aR+J4wWfNgH1DwCCBNjan7Iumx0lLtn+2/rEYuhIrYLY4vnxqSVGz9u3fXcgUwo6Q9LT8NFkaqK1vPprdq+BXg==
"@next/swc-win32-arm64-msvc@13.4.8":
version "13.4.8"
- resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.8.tgz#e5c4bfaa105fbe2bdb21a6d01467edd39a29cf37"
+ resolved "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.8.tgz"
integrity sha512-OWBKIrJwQBTqrat0xhxEB/jcsjJR3+diD9nc/Y8F1mRdQzsn4bPsomgJyuqPVZs6Lz3K18qdIkvywmfSq75SsQ==
"@next/swc-win32-ia32-msvc@13.4.8":
version "13.4.8"
- resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.8.tgz#c49c4d9f91845855bf544d5d14e8e13311da9931"
+ resolved "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.8.tgz"
integrity sha512-agiPWGjUndXGTOn4ChbKipQXRA6/UPkywAWIkx7BhgGv48TiJfHTK6MGfBoL9tS6B4mtW39++uy0wFPnfD0JWg==
"@next/swc-win32-x64-msvc@13.4.8":
version "13.4.8"
- resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.8.tgz#22c5c8fa05680f2775a29c6c5a74cf04b8cc9d90"
+ resolved "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.8.tgz"
integrity sha512-UIRKoByVKbuR6SnFG4JM8EMFlJrfEGuUQ1ihxzEleWcNwRMMiVaCj1KyqfTOW8VTQhJ0u8P1Ngg6q1RwnIBTtw==
"@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3":
@@ -1260,7 +1260,7 @@
"@nodelib/fs.stat" "2.0.5"
run-parallel "^1.1.9"
-"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
+"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
version "2.0.5"
resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
@@ -1389,7 +1389,7 @@ acorn-jsx@^5.3.2:
resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
-acorn@^8.9.0:
+"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^8.9.0:
version "8.10.0"
resolved "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz"
integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
@@ -1624,12 +1624,12 @@ brace-expansion@^1.1.7:
balanced-match "^1.0.0"
concat-map "0.0.1"
-braces@^3.0.2, braces@~3.0.2:
- version "3.0.2"
- resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
- integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
+braces@^3.0.3, braces@~3.0.2:
+ version "3.0.3"
+ resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz"
+ integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
dependencies:
- fill-range "^7.0.1"
+ fill-range "^7.1.1"
broadcast-channel@^3.4.1:
version "3.7.0"
@@ -1645,7 +1645,7 @@ broadcast-channel@^3.4.1:
rimraf "3.0.2"
unload "2.2.0"
-browserslist@^4.21.10, browserslist@^4.21.5, browserslist@^4.21.9:
+browserslist@^4.21.10, browserslist@^4.21.5, browserslist@^4.21.9, "browserslist@>= 4.21.0":
version "4.21.10"
resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz"
integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==
@@ -1746,16 +1746,16 @@ color-convert@^2.0.1:
dependencies:
color-name "~1.1.4"
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
- integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
-
color-name@~1.1.4:
version "1.1.4"
resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+color-name@1.1.3:
+ version "1.1.3"
+ resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
+ integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
+
commander@^4.0.0, commander@^4.0.1:
version "4.1.1"
resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz"
@@ -1823,7 +1823,7 @@ debug@^3.2.7:
dependencies:
ms "^2.1.1"
-debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4:
+debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4:
version "4.3.4"
resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
@@ -2056,7 +2056,7 @@ eslint-module-utils@^2.7.4, eslint-module-utils@^2.8.0:
dependencies:
debug "^3.2.7"
-eslint-plugin-import@^2.26.0:
+eslint-plugin-import@*, eslint-plugin-import@^2.26.0:
version "2.28.1"
resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz"
integrity sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==
@@ -2141,7 +2141,7 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1:
resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz"
integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
-eslint@8.44.0:
+eslint@*, "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^6.0.0 || ^7.0.0 || ^8.0.0", "eslint@^6.0.0 || ^7.0.0 || >=8.0.0", "eslint@^7.23.0 || ^8.0.0", eslint@8.44.0:
version "8.44.0"
resolved "https://registry.npmjs.org/eslint/-/eslint-8.44.0.tgz"
integrity sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==
@@ -2259,10 +2259,10 @@ file-entry-cache@^6.0.1:
dependencies:
flat-cache "^3.0.4"
-fill-range@^7.0.1:
- version "7.0.1"
- resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
- integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
+fill-range@^7.1.1:
+ version "7.1.1"
+ resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz"
+ integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
dependencies:
to-regex-range "^5.0.1"
@@ -2392,6 +2392,18 @@ glob-to-regexp@^0.4.1:
resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz"
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
+glob@^7.1.3, glob@^7.2.0:
+ version "7.2.3"
+ resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
+ integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.1.1"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
glob@7.1.6:
version "7.1.6"
resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"
@@ -2416,18 +2428,6 @@ glob@7.1.7:
once "^1.3.0"
path-is-absolute "^1.0.0"
-glob@^7.1.3, glob@^7.2.0:
- version "7.2.3"
- resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
- integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^3.1.1"
- once "^1.3.0"
- path-is-absolute "^1.0.0"
-
globals@^11.1.0:
version "11.12.0"
resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
@@ -2766,6 +2766,11 @@ jiti@^1.18.2:
resolved "https://registry.npmjs.org/jiti/-/jiti-1.19.3.tgz"
integrity sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==
+jquery@>=1.8.0:
+ version "3.7.1"
+ resolved "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz"
+ integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
+
js-sha3@0.8.0:
version "0.8.0"
resolved "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz"
@@ -2932,11 +2937,11 @@ merge2@^1.3.0, merge2@^1.4.1:
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
micromatch@^4.0.4, micromatch@^4.0.5:
- version "4.0.5"
- resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"
- integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
+ version "4.0.8"
+ resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz"
+ integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
dependencies:
- braces "^3.0.2"
+ braces "^3.0.3"
picomatch "^2.3.1"
microseconds@0.2.0:
@@ -2956,16 +2961,16 @@ minimist@^1.2.0, minimist@^1.2.6:
resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
-ms@2.1.2:
- version "2.1.2"
- resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
- integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-
ms@^2.1.1:
version "2.1.3"
resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
+ms@2.1.2:
+ version "2.1.2"
+ resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
+ integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+
mz@^2.7.0:
version "2.7.0"
resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz"
@@ -3252,16 +3257,16 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^
resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@8.4.14:
- version "8.4.14"
- resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz"
- integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==
+postcss@^8.0.0, postcss@^8.2.14, postcss@^8.4.21, postcss@^8.4.23, postcss@>=8.0.9:
+ version "8.4.28"
+ resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.28.tgz"
+ integrity sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==
dependencies:
- nanoid "^3.3.4"
+ nanoid "^3.3.6"
picocolors "^1.0.0"
source-map-js "^1.0.2"
-postcss@8.4.24:
+postcss@^8.1.0, postcss@8.4.24:
version "8.4.24"
resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz"
integrity sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==
@@ -3270,12 +3275,12 @@ postcss@8.4.24:
picocolors "^1.0.0"
source-map-js "^1.0.2"
-postcss@^8.4.23:
- version "8.4.28"
- resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.28.tgz"
- integrity sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==
+postcss@8.4.14:
+ version "8.4.14"
+ resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz"
+ integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==
dependencies:
- nanoid "^3.3.6"
+ nanoid "^3.3.4"
picocolors "^1.0.0"
source-map-js "^1.0.2"
@@ -3303,7 +3308,7 @@ queue-microtask@^1.2.2:
resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
-react-dom@18.2.0, react-dom@^18.2.0:
+"react-dom@^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0", "react-dom@^15.5.4 || ^16.0.0 || ^17.0.0 || ^18.0.0", "react-dom@^16.8.0-0 || >=17.0.1 || ^18.0.0", react-dom@^18.0.0, react-dom@^18.2.0, "react-dom@>= 16.8.0", react-dom@18.2.0:
version "18.2.0"
resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz"
integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
@@ -3321,9 +3326,9 @@ react-horizontal-vertical@^1.0.4:
react-dom "^18.2.0"
react-icons@^4.11.0:
- version "4.11.0"
- resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-4.11.0.tgz#4b0e31c9bfc919608095cc429c4f1846f4d66c65"
- integrity sha512-V+4khzYcE5EBk/BvcuYRq6V/osf11ODUM2J8hg2FDSswRrGvqiYUYPRy4OdrWaQOBj4NcpJfmHZLNaD+VH0TyA==
+ version "4.12.0"
+ resolved "https://registry.npmjs.org/react-icons/-/react-icons-4.12.0.tgz"
+ integrity sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==
react-intersection-observer@^8.25.1:
version "8.34.0"
@@ -3385,7 +3390,7 @@ react-use-scroll-direction@^0.1.0:
dependencies:
history "^5.0.0"
-react@18.2.0, react@^18.2.0:
+react@*, "react@^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0", "react@^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", "react@^15.0.0 || ^16.0.0 || ^17.0.0|| ^18.0.0", "react@^15.5.4 || ^16.0.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0-0 || >=17.0.1 || ^18.0.0", react@^18.0.0, react@^18.2.0, "react@>= 16.8.0", "react@>= 16.8.0 || 17.x.x || ^18.0.0-0", react@>=16, "react@16 - 18", react@18.2.0:
version "18.2.0"
resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz"
integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==
@@ -3513,7 +3518,7 @@ reusify@^1.0.4:
resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
-rimraf@3.0.2, rimraf@^3.0.2:
+rimraf@^3.0.2, rimraf@3.0.2:
version "3.0.2"
resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
@@ -3901,7 +3906,7 @@ typed-array-length@^1.0.4:
for-each "^0.3.3"
is-typed-array "^1.1.9"
-typescript@5.1.6:
+"typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta", typescript@>=3.3.1, typescript@5.1.6:
version "5.1.6"
resolved "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz"
integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==