diff --git a/src/components/sections/team/TeamPets.tsx b/src/components/sections/team/TeamPets.tsx deleted file mode 100644 index 89efc20..0000000 --- a/src/components/sections/team/TeamPets.tsx +++ /dev/null @@ -1,65 +0,0 @@ -import TextAnimation from "@/components/ui/TextAnimation"; -import GridOrCarousel from "@/components/ui/GridOrCarousel"; -import ScrollReveal from "@/components/ui/ScrollReveal"; -import ImageOrVideo from "@/components/ui/ImageOrVideo"; - -type Pet = { - name: string; - owner: string; - role: string; - imageSrc: string; -}; - -type TeamPetsProps = { - tag: string; - title: string; - description: string; - pets: Pet[]; -}; - -const TeamPets = ({ tag, title, description, pets }: TeamPetsProps) => { - return ( -
-
-
- {tag} - - - - -
- - - - {pets.map((pet) => ( -
-
- -
-
-

{pet.name}

-

{pet.role}

-

Human: {pet.owner}

-
-
- ))} -
-
-
-
- ); -}; - -export default TeamPets; \ No newline at end of file