Switch to version 1: remove src/pages/HomePage/sections/Team.tsx

This commit is contained in:
2026-06-16 08:16:07 +00:00
parent c4b7432e1e
commit a22a78fc89

View File

@@ -1,37 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "team" section.
import React from 'react';
import TeamOverlayCards from '@/components/sections/team/TeamOverlayCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TeamSection(): React.JSX.Element {
return (
<div id="team" data-section="team">
<SectionErrorBoundary name="team">
<TeamOverlayCards
tag="Our Specialists"
title="Meet Your Smile Architects"
description="Our team of dental surgeons are dedicated to providing global-standard care right here in Kolkata."
members={[
{
name: "Dr. Ananya Roy",
role: "Chief Dentist",
imageSrc: "http://img.b2bpic.net/free-photo/coronavirus-vaccination-campaign-concept-happy-healthy-girl-showing-shoulder-with-patch-after-getting-vaccine-from-covid-yellow-background_1258-300964.jpg",
},
{
name: "Dr. Vikram Singh",
role: "Implantologist",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-dentist-s-office_1157-23501.jpg",
},
{
name: "Dr. Sarah Khan",
role: "Orthodontist",
imageSrc: "http://img.b2bpic.net/free-photo/retired-sick-patient-sitting-medical-cabinet-checkup-visit-using-health-care-appointment-find-diagnosis-old-person-waiting-receive-prescription-medicine-from-medical-team_482257-48128.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}