diff --git a/src/components/sections/other/TeamPets.tsx b/src/components/sections/other/TeamPets.tsx index e881a05..b436e31 100644 --- a/src/components/sections/other/TeamPets.tsx +++ b/src/components/sections/other/TeamPets.tsx @@ -5,6 +5,7 @@ import ScrollReveal from "@/components/ui/ScrollReveal"; type Pet = { name: string; + description?: string; imageSrc: string; }; @@ -18,18 +19,22 @@ type TeamPetsProps = { const defaultPets: Pet[] = [ { name: "Barnaby", + description: "Chief Tasting Officer", imageSrc: "https://images.unsplash.com/photo-1583511655857-d19b40a7a54e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4Mzc5ODl8MHwxfHNlYXJjaHwxfHxkb2d8ZW58MXwwfHx8MTc3NzM4NDkyMXww&ixlib=rb-4.1.0&q=80&w=1080", }, { name: "Luna", + description: "Nap Coordinator", imageSrc: "https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4Mzc5ODl8MHwxfHNlYXJjaHwxfHxjYXR8ZW58MXwwfHx8MTc3NzM4NDkyMnww&ixlib=rb-4.1.0&q=80&w=1080", }, { name: "Cooper", + description: "Door Greeter", imageSrc: "https://images.unsplash.com/photo-1552053831-71594a27632d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4Mzc5ODl8MHwxfHNlYXJjaHwyfHxkb2d8ZW58MXwwfHx8MTc3NzM4NDkyM3ww&ixlib=rb-4.1.0&q=80&w=1080", }, { name: "Milo", + description: "Crumb Inspector", imageSrc: "https://images.unsplash.com/photo-1573865526739-10659fec78a5?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4Mzc5ODl8MHwxfHNlYXJjaHwyfHxjYXR8ZW58MXwwfHx8MTc3NzM4NDkyNHww&ixlib=rb-4.1.0&q=80&w=1080", } ]; @@ -64,16 +69,19 @@ export default function TeamPets({ -
- {pets.map((pet, index) => ( +
+ {pets.map((pet) => ( -
+
-

{pet.name}

+

{pet.name}

+ {pet.description && ( +

{pet.description}

+ )} ))}