2 Commits

Author SHA1 Message Date
kudinDmitriyUp
8c309f61c1 Bob AI: Added a team section using TeamProfileCards. 2026-06-08 14:09:31 +00:00
6ac4b24d15 Merge version_4_1780927467294 into main
Merge version_4_1780927467294 into main
2026-06-08 14:06:55 +00:00
2 changed files with 20 additions and 1 deletions

View File

@@ -14,13 +14,15 @@ import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
{/* webild-stub @2026-06-08T14:03:44.754Z: add buttons to each solution so that users can learn more */}
import TeamSection from './HomePage/sections/Team';{/* webild-stub @2026-06-08T14:03:44.754Z: add buttons to each solution so that users can learn more */}
export default function HomePage(): React.JSX.Element {
return (
<>
<HomeSection />
<AboutSection />
<TeamSection />
<ServicesSection />
<ExpertiseSection />
<ResultsSection />

View File

@@ -0,0 +1,17 @@
// Created by add_section_from_catalog (TeamProfileCards).
import React from 'react';
import TeamProfileCards from '@/components/sections/team/TeamProfileCards';
export default function TeamSection(): React.JSX.Element {
return (
<div data-webild-section="team" id="team">
<TeamProfileCards
title="The Minds Behind the Magic"
description="Meet the experts behind our successful campaigns."
items={[{"avatarSrc":"https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&q=80&w=256&h=256","buttonText":"LinkedIn","title":"Michael Chen","imageSrc":"https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&q=80&w=800&h=600","description":"10+ years of experience in digital marketing and brand strategy."},{"buttonText":"LinkedIn","title":"Sarah Jenkins","imageSrc":"https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&q=80&w=800&h=600","avatarSrc":"https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&q=80&w=256&h=256","description":"Specializes in SEO, content creation, and organic growth."},{"imageSrc":"https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&q=80&w=800&h=600","buttonText":"LinkedIn","title":"David Rodriguez","avatarSrc":"https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&q=80&w=256&h=256","description":"Expert in paid media, analytics, and conversion rate optimization."}]}
tag="Our Team"
/>
</div>
);
}