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

This commit is contained in:
2026-06-07 19:02:09 +00:00
parent c3ee3df13c
commit 9a833e6263

View File

@@ -0,0 +1,37 @@
// 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 TeamStackedCards from '@/components/sections/team/TeamStackedCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TeamSection(): React.JSX.Element {
return (
<div id="team" data-section="team">
<SectionErrorBoundary name="team">
<TeamStackedCards
tag="Meet the Maestros"
title="Our Passionate Pizza Crew"
description="Behind every delicious pizza is a dedicated team committed to quality and a warm dining experience."
members={[
{
name: "Chef Marco",
role: "Head Pizzaiolo",
imageSrc: "http://img.b2bpic.net/free-photo/italian-chef-is-putting-gourmet-freshly-made-pizza-stone-oven_613910-14121.jpg",
},
{
name: "Sophia Rodriguez",
role: "Assistant Chef",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-pretty-delivery-girl-red-uniform-cap-holding-pizza-packages_141793-31534.jpg",
},
{
name: "David Kim",
role: "Operations Manager",
imageSrc: "http://img.b2bpic.net/free-photo/woman-looking-goodies-local-producer_23-2149110825.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}