// ============================================================================ // Affiliate Functions // ============================================================================ /** * Generate affiliate registration link */ export function generateAffiliateLink(affCode: string): string { if (typeof window === 'undefined') return '' return `${window.location.origin}/register?aff=${affCode}` }