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

This commit is contained in:
2026-06-19 13:02:26 +00:00
parent 957eb590b2
commit 2793d5fc43

View File

@@ -1,38 +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 TeamListCards from '@/components/sections/team/TeamListCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TeamSection(): React.JSX.Element {
return (
<div id="team" data-section="team">
<SectionErrorBoundary name="team">
<TeamListCards
tag="Wedding Party"
title="Our Amazing Friends"
description="The people who have been there through it all and will stand by our side."
groups={[
{
title: "Bridesmaids", members: [
{
name: "Sarah Miller", role: "Maid of Honor", detail: "Best friend since college", imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-getting-married_23-2150753674.jpg?_wi=3"},
{
name: "Emily Chen", role: "Bridesmaid", detail: "Partner in crime", imageSrc: "http://img.b2bpic.net/free-photo/portrait-two-attractive-girls-tulle-skirts-sitting-outdoor-stairs-they-smiling_197531-1999.jpg"},
],
},
{
title: "Groomsmen", members: [
{
name: "David Smith", role: "Best Man", detail: "Lifelong brother", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-groom-having-their-wedding-with-guests-beach_23-2149044022.jpg"},
{
name: "Kevin Lee", role: "Groomsman", detail: "Supportive friend", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-stylish-smiling-male-elegant-black-suit-dark-background_613910-14629.jpg"},
],
},
]}
/>
</SectionErrorBoundary>
</div>
);
}