- {/* Header */}
-
-
- Backed by a team of Global Talents.
-
-
-
-
- Join us
-
-
-
-
-
- {/* Tabs */}
-
-
-
- {Object.keys(categories).map((category) => (
-
- classNames(
- "min-w-fit w-fit rounded-[40px] py-2 px-4 text-base font-light leading-5",
- "ring-white/60 ring-offset-2 ring-offset-gray-600 focus:outline-none",
- selected
- ? "bg-primary font-medium text-white"
- : "bg-[#f8f8f8] font-normal"
- )
- }
- >
- {category}
-
- ))}
-
-
- {Object.values(categories).map((posts, idx) => (
-
- {posts.map(({ id, name, title, headshot, portfolio }) => (
-
- ))}
-
- ))}
-
-
-
-
- );
-};
-
-export default Teams;
+import { Tab } from "@headlessui/react";
+import React from "react";
+import { Link, useNavigate } from "react-router-dom";
+
+import { upleftGreen } from "../../../../assets/images/icons";
+import useStackData from "../../../../hooks/Queries/stack/useStackData";
+import { Loader } from "../../../components";
+import DeveloperCard from "./DeveloperCard";
+
+function classNames(...classes) {
+ return classes.filter(Boolean).join(" ");
+}
+
+function Teams() {
+ const navigate = useNavigate();
+
+ const { data: teamData, isLoading, isError, isSuccess } = useStackData();
+
+ return (
+