39 lines
2.0 KiB
TypeScript
39 lines
2.0 KiB
TypeScript
// 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="Meet Our Experts"
|
|
title="Talented Professional Team"
|
|
description="Get to know the passionate specialists behind our beauty services."
|
|
groups={[
|
|
{
|
|
title: "Salon Leadership & Styling", members: [
|
|
{
|
|
name: "Jane Smith", role: "Head Stylist", detail: "10+ years of creative styling experience.", imageSrc: "http://img.b2bpic.net/free-photo/amazing-laughing-redhead-young-lady-standing-cafe_171337-15271.jpg"},
|
|
{
|
|
name: "Robert Chen", role: "Senior Colorist", detail: "Expertise in balayage and highlights.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-relaxed-content-woman-leaning-wall_1262-1749.jpg"},
|
|
],
|
|
},
|
|
{
|
|
title: "Aesthetics & Care", members: [
|
|
{
|
|
name: "Emily Davis", role: "Lead Esthetician", detail: "Specialized in advanced skincare facials.", imageSrc: "http://img.b2bpic.net/free-photo/team-bride-celebrating-before-wedding_23-2149329119.jpg"},
|
|
{
|
|
name: "Sarah Miller", role: "Nail Artist", detail: "Precision nail care and art specialist.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-bride-indoors_23-2149721992.jpg"},
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
);
|
|
}
|