From 3bc0c19ae9a2e3f0550056732c14db84c9bef4eb Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Tue, 28 Apr 2026 17:10:41 +0300 Subject: [PATCH] Bob AI: [SECTION ADD OPERATION] You must create a COMPLETELY NEW sec --- src/components/sections/team/TeamPets.tsx | 65 +++++++++++++++++++++++ src/pages/HomePage.tsx | 8 ++- 2 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 src/components/sections/team/TeamPets.tsx diff --git a/src/components/sections/team/TeamPets.tsx b/src/components/sections/team/TeamPets.tsx new file mode 100644 index 0000000..89efc20 --- /dev/null +++ b/src/components/sections/team/TeamPets.tsx @@ -0,0 +1,65 @@ +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 diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 53e0a73..e2f5d35 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -7,6 +7,7 @@ import HeroBrand from '@/components/sections/hero/HeroBrand'; import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; import ProductVariantCards from '@/components/sections/product/ProductVariantCards'; import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards'; +import TeamPets from '@/components/sections/team/TeamPets'; export default function HomePage() { return ( @@ -233,6 +234,11 @@ export default function HomePage() { imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=xrpk5b" /> - + + +
+ +
+ ); } \ No newline at end of file