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

This commit is contained in:
2026-06-21 17:25:31 +00:00
parent 9e99d8634a
commit 553d39cf9b

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 Experts"
title="Meet the Content Team"
description="The creative minds behind your viral content."
members={[
{
name: "Alex Rivers",
role: "Creative Lead",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-sitting-chair-black-white_23-2149411360.jpg",
},
{
name: "Jordan Smith",
role: "Senior Editor",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-working-as-photographer_52683-110067.jpg",
},
{
name: "Casey Miles",
role: "Cinematographer",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-businessman-with-brick-background_23-2148242735.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}