'use client'; import React, { ReactNode } from 'react'; import { Glow } from '@/ui/Glow'; import { Heading } from '@/ui/Heading'; import { Text } from '@/ui/Text'; import { Stack } from '@/ui/Stack'; import { Box } from '@/ui/Box'; export interface TeamHeroProps { title: ReactNode; description: string; stats?: ReactNode; actions?: ReactNode; sideContent?: ReactNode; } export function TeamHero({ title, description, stats, actions, sideContent }: TeamHeroProps) { return ( {title} {description} {stats && {stats}} {actions && ( {actions} )} {sideContent && ( {sideContent} )} ); }