/** * Hook to get localized month names. * * @remarks * Returns an array of month objects containing the month index (0-11) and the localized label. * It automatically updates when the browser's language changes. * * @returns An array of `{ value: number, label: string }` objects. * * @example * ```tsx * function MonthList() { * const months = useMonths(); * return ( *