'use client'; import { ReactNode } from 'react'; import { Box } from '@/ui/Box'; import { Container } from '@/ui/Container'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; interface TeamsDirectoryProps { children: ReactNode; title?: string; subtitle?: string; } export function TeamsDirectory({ children, title, subtitle }: TeamsDirectoryProps) { return ( {title && ( {title} )} {children} ); } export function TeamsDirectorySection({ children, title, accentColor = "primary-accent" }: { children: ReactNode, title: string, accentColor?: string }) { return ( {title} {children} ); }