diff --git a/src/pages/HomePage/sections/Team.tsx b/src/pages/HomePage/sections/Team.tsx index 3295f6c..2a6fa79 100644 --- a/src/pages/HomePage/sections/Team.tsx +++ b/src/pages/HomePage/sections/Team.tsx @@ -1,32 +1,68 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "team" section. +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import TextAnimation from "@/components/ui/TextAnimation"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import ScrollReveal from "@/components/ui/ScrollReveal"; -import React from 'react'; -import TeamGlassCards from '@/components/sections/team/TeamGlassCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +type TeamMember = { + name: string; + role: string; + imageSrc?: string; +}; + +export default function TeamSection() { + const team: TeamMember[] = [ + { + name: "Alex Rivera", + role: "Principal Architect", + }, + { + name: "Jordan Lee", + role: "Lead Designer", + }, + { + name: "Taylor Smith", + role: "Project Manager", + }, + { + name: "Casey Jones", + role: "Interior Specialist", + } + ]; -export default function TeamSection(): React.JSX.Element { return ( -
Team
+{member.role}
+