// Shared utility functions export function getInitials(name: string): string { return name .split(/\s+/) .map((w) => w[0]) .join("") .toUpperCase() .slice(0, 2); }