diff --git a/src/app/(pages)/team/page.tsx b/src/app/(pages)/team/page.tsx index 32efdce..3eabf94 100644 --- a/src/app/(pages)/team/page.tsx +++ b/src/app/(pages)/team/page.tsx @@ -1,9 +1,3 @@ -import { - Carousel, - CarouselDiv, - CarouselElement, -} from "@/app/components/Carousel"; - import teamList, { TeamType } from "@/data/teamData"; import Card from "@/app/components/Card"; import { Users } from "lucide-react"; @@ -15,7 +9,6 @@ import { AccordionItem, AccordionTrigger, } from "@/app/components/Accordion"; -import CarouselScroller from "@/app/components/CarouselScroller"; import Image from "next/image"; /** @@ -120,21 +113,14 @@ export default function TeamPage() { ))} - - - {advisors.map((advisor, index) => ( - -
-

{advisor}

-
-
- ))} -
- -
+ +
+ {advisors.map((advisor, index) => ( +
+

{advisor}

+
+ ))} +
@@ -143,15 +129,14 @@ export default function TeamPage() { ))}
- - - {teamList.map((team, index) => ( - - - - ))} - - + +
+ {teamList.map((team, index) => ( + + ))} +
+ + ); }